aboutsummaryrefslogtreecommitdiffstats
path: root/ethpipe/world.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethpipe/world.go')
-rw-r--r--ethpipe/world.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethpipe/world.go b/ethpipe/world.go
index 25e2a1952..2a07f340c 100644
--- a/ethpipe/world.go
+++ b/ethpipe/world.go
@@ -26,8 +26,8 @@ func (self *world) State() *ethstate.State {
return self.pipe.stateManager.CurrentState()
}
-func (self *world) Get(addr []byte) *object {
- return &object{self.State().GetStateObject(addr)}
+func (self *world) Get(addr []byte) *Object {
+ return &Object{self.State().GetStateObject(addr)}
}
func (self *world) safeGet(addr []byte) *ethstate.StateObject {