good morning!!!!

Skip to content
Snippets Groups Projects
Commit 93e12250 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Switch variables as intended

parent f4551a7e
Branches
Tags
No related merge requests found
...@@ -101,7 +101,7 @@ out: ...@@ -101,7 +101,7 @@ out:
cb.Call(cb, val) cb.Call(cb, val)
} }
} else if storageObject, ok := object.Resource.(*ethchain.StorageState); ok { } 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)) val, _ := self.vm.ToValue(ethpub.NewPStorageState(storageObject))
cb.Call(cb, val) cb.Call(cb, val)
} }
...@@ -115,7 +115,7 @@ func (self *JSRE) initStdFuncs() { ...@@ -115,7 +115,7 @@ func (self *JSRE) initStdFuncs() {
eth := t.Object() eth := t.Object()
eth.Set("watch", self.watch) eth.Set("watch", self.watch)
eth.Set("addPeer", self.addPeer) eth.Set("addPeer", self.addPeer)
self.Set("require", self.require) eth.Set("require", self.require)
} }
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment