aboutsummaryrefslogtreecommitdiffstats
path: root/ethereum.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-01-25 22:57:35 +0800
committerobscuren <geffobscura@gmail.com>2014-01-25 22:57:35 +0800
commitd753eb77ec1e2298a8b386f0ddae5e34d450b805 (patch)
tree15a24a70c4d01a6d7ac56baa4011e7ac5a88e344 /ethereum.go
parent42e8930b37ddd89d17a069912a91df13f41df244 (diff)
downloadgo-tangerine-d753eb77ec1e2298a8b386f0ddae5e34d450b805.tar
go-tangerine-d753eb77ec1e2298a8b386f0ddae5e34d450b805.tar.gz
go-tangerine-d753eb77ec1e2298a8b386f0ddae5e34d450b805.tar.bz2
go-tangerine-d753eb77ec1e2298a8b386f0ddae5e34d450b805.tar.lz
go-tangerine-d753eb77ec1e2298a8b386f0ddae5e34d450b805.tar.xz
go-tangerine-d753eb77ec1e2298a8b386f0ddae5e34d450b805.tar.zst
go-tangerine-d753eb77ec1e2298a8b386f0ddae5e34d450b805.zip
Removed the last block of the block chain
Added CurrentBlock to block manager
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 2d79659b0..e434f3c8e 100644
--- a/ethereum.go
+++ b/ethereum.go
@@ -95,7 +95,7 @@ func main() {
time.Sleep(blockTime * time.Second)
block := ethchain.CreateBlock(
- ethereum.BlockManager.BlockChain().LastBlock.State().Root,
+ ethereum.BlockManager.CurrentBlock.State().Root,
ethereum.BlockManager.LastBlockHash,
"123",
big.NewInt(1),