Removed method name

This commit is contained in:
obscuren
2014-05-21 12:14:39 +02:00
parent d16d56d39f
commit 16bd88c10a
2 changed files with 5 additions and 1 deletions

View File

@ -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())
}