diff options
author | obscuren <geffobscura@gmail.com> | 2014-01-13 08:22:33 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-01-13 08:22:33 +0800 |
commit | 578b63e2b8a32122fb45f9f053503e51d9a5c535 (patch) | |
tree | 156f31a7b3fccb30a575128f28fb1034283ef054 /ethereum.go | |
parent | 7ade1778fba0fd1f6e0bccc7647cd8fb3185528d (diff) | |
download | go-tangerine-578b63e2b8a32122fb45f9f053503e51d9a5c535.tar.gz go-tangerine-578b63e2b8a32122fb45f9f053503e51d9a5c535.tar.zst go-tangerine-578b63e2b8a32122fb45f9f053503e51d9a5c535.zip |
Some miner reports
Diffstat (limited to 'ethereum.go')
-rw-r--r-- | ethereum.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereum.go b/ethereum.go index 055c1a5ad..7e13f197a 100644 --- a/ethereum.go +++ b/ethereum.go @@ -64,8 +64,8 @@ func main() { go func() { for { - res := dagger.Search(ethutil.Big("0"), ethutil.BigPow(2, 36)) - server.Broadcast("block", ethutil.Encode(res.String())) + res := dagger.Search(ethutil.Big("01001"), ethutil.BigPow(2, 26)) + server.Broadcast("blockmine", ethutil.Encode(res.String())) } }() } |