Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
fe7e2847
Commit
fe7e2847
authored
May 11, 2015
by
Jeffrey Wilcke
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #920 from tgerring/issue917
Return 32-byte hashes from GetWork
parents
0329e058
8e77f815
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
remote_agent.go
miner/remote_agent.go
+2
-2
No files found.
miner/remote_agent.go
View file @
fe7e2847
...
...
@@ -64,13 +64,13 @@ func (a *RemoteAgent) GetWork() [3]string {
res
[
0
]
=
a
.
work
.
HashNoNonce
()
.
Hex
()
seedHash
,
_
:=
ethash
.
GetSeedHash
(
a
.
currentWork
.
NumberU64
())
res
[
1
]
=
common
.
Bytes
2Hex
(
seedHash
)
res
[
1
]
=
common
.
Bytes
ToHash
(
seedHash
)
.
Hex
(
)
// Calculate the "target" to be returned to the external miner
n
:=
big
.
NewInt
(
1
)
n
.
Lsh
(
n
,
255
)
n
.
Div
(
n
,
a
.
work
.
Difficulty
())
n
.
Lsh
(
n
,
1
)
res
[
2
]
=
common
.
Bytes
2Hex
(
n
.
Bytes
()
)
res
[
2
]
=
common
.
Bytes
ToHash
(
n
.
Bytes
())
.
Hex
(
)
}
return
res
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment