aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ethereal/ui/gui.go2
-rw-r--r--ethereum/repl.go4
2 files changed, 5 insertions, 1 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go
index e267dabfd..440e94e22 100644
--- a/ethereal/ui/gui.go
+++ b/ethereal/ui/gui.go
@@ -234,7 +234,7 @@ func (gui *Gui) update() {
gui.setWalletValue(object.Amount, nil)
- state.SetStateObject(object)
+ state.UpdateStateObject(object)
}
}
}
diff --git a/ethereum/repl.go b/ethereum/repl.go
index 29d38afef..d1243d19c 100644
--- a/ethereum/repl.go
+++ b/ethereum/repl.go
@@ -53,6 +53,10 @@ type JSEthereum struct {
vm *otto.Otto
}
+func (self *JSEthereum) GetBlock(hash string) otto.Value {
+ return self.toVal(self.PEthereum.GetBlock(hash))
+}
+
func (self *JSEthereum) GetKey() otto.Value {
return self.toVal(self.PEthereum.GetKey())
}