diff options
author | obscuren <geffobscura@gmail.com> | 2014-03-05 17:57:14 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-03-05 17:57:14 +0800 |
commit | fbd53f0e34b636074941f5ea7b151bf173c5ed17 (patch) | |
tree | bd4c3c5a5ab444fb5c5930f7b59e52e011ce3bca /ui/gui.go | |
parent | f7fb5b902c8b216c835c10fc4676b7b08fb90d04 (diff) | |
download | go-tangerine-fbd53f0e34b636074941f5ea7b151bf173c5ed17.tar.gz go-tangerine-fbd53f0e34b636074941f5ea7b151bf173c5ed17.tar.zst go-tangerine-fbd53f0e34b636074941f5ea7b151bf173c5ed17.zip |
Renamed block manager to state manager
Diffstat (limited to 'ui/gui.go')
-rw-r--r-- | ui/gui.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ type Gui struct { // Create GUI, but doesn't start it func New(ethereum *eth.Ethereum) *Gui { - lib := &EthLib{blockManager: ethereum.StateManager(), blockChain: ethereum.BlockChain(), txPool: ethereum.TxPool()} + lib := &EthLib{stateManager: ethereum.StateManager(), blockChain: ethereum.BlockChain(), txPool: ethereum.TxPool()} db, err := ethdb.NewLDBDatabase("tx_database") if err != nil { panic(err) |