Commit 93e12250 authored by obscuren's avatar obscuren

Switch variables as intended

parent f4551a7e
......@@ -101,7 +101,7 @@ out:
cb.Call(cb, val)
}
} else if storageObject, ok := object.Resource.(*ethchain.StorageState); ok {
for _, cb := range self.objectCb[ethutil.Hex(storageObject.Address)+ethutil.Hex(storageObject.StateAddress)] {
for _, cb := range self.objectCb[ethutil.Hex(storageObject.StateAddress)+ethutil.Hex(storageObject.Address)] {
val, _ := self.vm.ToValue(ethpub.NewPStorageState(storageObject))
cb.Call(cb, val)
}
......@@ -115,7 +115,7 @@ func (self *JSRE) initStdFuncs() {
eth := t.Object()
eth.Set("watch", self.watch)
eth.Set("addPeer", self.addPeer)
self.Set("require", self.require)
eth.Set("require", self.require)
}
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment