aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-02-03 07:09:02 +0800
committerobscuren <geffobscura@gmail.com>2014-02-03 07:09:02 +0800
commit00ec15c82eafc493c3349aea24c4fef315e5692e (patch)
treeeb312364ebcd145ecc3fd9c9b51eb45328a87874 /ethereum.go
parent7f8f008253c9928b556df238984f3046304be86e (diff)
downloadgo-tangerine-00ec15c82eafc493c3349aea24c4fef315e5692e.tar
go-tangerine-00ec15c82eafc493c3349aea24c4fef315e5692e.tar.gz
go-tangerine-00ec15c82eafc493c3349aea24c4fef315e5692e.tar.bz2
go-tangerine-00ec15c82eafc493c3349aea24c4fef315e5692e.tar.lz
go-tangerine-00ec15c82eafc493c3349aea24c4fef315e5692e.tar.xz
go-tangerine-00ec15c82eafc493c3349aea24c4fef315e5692e.tar.zst
go-tangerine-00ec15c82eafc493c3349aea24c4fef315e5692e.zip
Fixed mining
Diffstat (limited to 'ethereum.go')
-rw-r--r--ethereum.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ethereum.go b/ethereum.go
index 74c545edc..8a241f4cc 100644
--- a/ethereum.go
+++ b/ethereum.go
@@ -91,7 +91,7 @@ func main() {
block.Nonce = pow.Search(block)
- err := ethereum.BlockManager.ProcessBlockWithState(block, block.State())
+ err := ethereum.BlockManager.ProcessBlock(block)
if err != nil {
log.Println(err)
} else {