Renamed block manager to state manager

This commit is contained in:
obscuren
2014-03-05 10:57:14 +01:00
parent f7fb5b902c
commit fbd53f0e34
2 changed files with 3 additions and 3 deletions

View File

@ -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)