aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-01-15 04:48:16 +0800
committerobscuren <geffobscura@gmail.com>2014-01-15 04:48:16 +0800
commit44900e363cbc81b640bc16bcc7e6a50c22352be4 (patch)
treecf7ce2273bc493ec0757d1d445f9bb1aa9024ae3 /ethereum.go
parent578b63e2b8a32122fb45f9f053503e51d9a5c535 (diff)
downloadgo-tangerine-44900e363cbc81b640bc16bcc7e6a50c22352be4.tar
go-tangerine-44900e363cbc81b640bc16bcc7e6a50c22352be4.tar.gz
go-tangerine-44900e363cbc81b640bc16bcc7e6a50c22352be4.tar.bz2
go-tangerine-44900e363cbc81b640bc16bcc7e6a50c22352be4.tar.lz
go-tangerine-44900e363cbc81b640bc16bcc7e6a50c22352be4.tar.xz
go-tangerine-44900e363cbc81b640bc16bcc7e6a50c22352be4.tar.zst
go-tangerine-44900e363cbc81b640bc16bcc7e6a50c22352be4.zip
Updated to temporary trie
Diffstat (limited to 'ethereum.go')
-rw-r--r--ethereum.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/ethereum.go b/ethereum.go
index 7e13f197a..83f656fe2 100644
--- a/ethereum.go
+++ b/ethereum.go
@@ -64,7 +64,7 @@ func main() {
go func() {
for {
- res := dagger.Search(ethutil.Big("01001"), ethutil.BigPow(2, 26))
+ res := dagger.Search(ethutil.Big("01001"), ethutil.BigPow(2, 36))
server.Broadcast("blockmine", ethutil.Encode(res.String()))
}
}()
@@ -72,7 +72,6 @@ func main() {
server.Start()
-
// Wait for shutdown
server.WaitForShutdown()
}