diff options
author | obscuren <geffobscura@gmail.com> | 2014-11-04 17:57:02 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-11-04 17:57:02 +0800 |
commit | f59a3b67f69b26f969084e0de165435e80bd8e12 (patch) | |
tree | f92098fa0252484fcdccdaf6075c2842713a2fc9 /xeth/world.go | |
parent | 1025d097fd4e5171dadb2c1a8eeb43b7730b13b6 (diff) | |
download | dexon-f59a3b67f69b26f969084e0de165435e80bd8e12.tar.gz dexon-f59a3b67f69b26f969084e0de165435e80bd8e12.tar.zst dexon-f59a3b67f69b26f969084e0de165435e80bd8e12.zip |
StateManager => BlockManager
Diffstat (limited to 'xeth/world.go')
-rw-r--r-- | xeth/world.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/world.go b/xeth/world.go index dda2df274..6fb757d67 100644 --- a/xeth/world.go +++ b/xeth/world.go @@ -23,7 +23,7 @@ func (self *XEth) World() *World { } func (self *World) State() *state.State { - return self.pipe.stateManager.CurrentState() + return self.pipe.blockManager.CurrentState() } func (self *World) Get(addr []byte) *Object { |