diff options
author | obscuren <geffobscura@gmail.com> | 2014-01-30 07:47:09 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-01-30 07:47:09 +0800 |
commit | 27a03d3eea5451ddb84dbb1ff33ee916259635d0 (patch) | |
tree | 3464e91b6ee6a6a4a661599a4d73c75f997fab63 /ethereum.go | |
parent | 6ab368cf7426195a0d44b14ad6d82c020c024395 (diff) | |
download | go-tangerine-27a03d3eea5451ddb84dbb1ff33ee916259635d0.tar.gz go-tangerine-27a03d3eea5451ddb84dbb1ff33ee916259635d0.tar.zst go-tangerine-27a03d3eea5451ddb84dbb1ff33ee916259635d0.zip |
Updated to the new Trie
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 8608ca47a..2ffb6c929 100644 --- a/ethereum.go +++ b/ethereum.go @@ -84,7 +84,7 @@ func main() { ethereum.Start() if StartMining { - blockTime := time.Duration(2) + blockTime := time.Duration(10) log.Printf("Dev Test Mining started. Blocks found each %d seconds\n", blockTime) // Fake block mining. It broadcasts a new block every 5 seconds @@ -107,7 +107,7 @@ func main() { if err != nil { log.Println(err) } else { - log.Println("\n+++++++ MINED BLK +++++++\n", block.String()) + //log.Println("\n+++++++ MINED BLK +++++++\n", block.String()) } } }() |