aboutsummaryrefslogtreecommitdiffstats
path: root/xeth/world.go
diff options
context:
space:
mode:
Diffstat (limited to 'xeth/world.go')
-rw-r--r--xeth/world.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/xeth/world.go b/xeth/world.go
index 008a08423..25c2f3eb8 100644
--- a/xeth/world.go
+++ b/xeth/world.go
@@ -36,7 +36,7 @@ func (self *World) SafeGet(addr []byte) *Object {
func (self *World) safeGet(addr []byte) *state.StateObject {
object := self.State().GetStateObject(addr)
if object == nil {
- object = state.NewStateObject(addr)
+ object = state.NewStateObject(addr, self.pipe.obj.Db())
}
return object