From 098f7f23ce62d3f0c60d30d325576de93795cc4b Mon Sep 17 00:00:00 2001 From: zelig Date: Sun, 29 Jun 2014 20:39:45 +0100 Subject: changed name for ethutil hex functions; and access to keyring via keyManager --- ethereal/ui/debugger.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ethereal/ui/debugger.go') diff --git a/ethereal/ui/debugger.go b/ethereal/ui/debugger.go index 85dd45563..5ad1b4a2c 100644 --- a/ethereal/ui/debugger.go +++ b/ethereal/ui/debugger.go @@ -49,7 +49,7 @@ func (self *DebuggerWindow) SetData(data string) { self.win.Set("dataText", data) } func (self *DebuggerWindow) SetAsm(data string) { - dis := ethchain.Disassemble(ethutil.FromHex(data)) + dis := ethchain.Disassemble(ethutil.Hex2Bytes(data)) for _, str := range dis { self.win.Root().Call("setAsm", str) } @@ -101,7 +101,7 @@ func (self *DebuggerWindow) Debug(valueStr, gasStr, gasPriceStr, scriptStr, data gasPrice = ethutil.Big(gasPriceStr) value = ethutil.Big(valueStr) // Contract addr as test address - keyPair = ethutil.GetKeyRing().Get(0) + keyPair = self.lib.eth.KeyManager().KeyPair() callerTx = ethchain.NewContractCreationTx(ethutil.Big(valueStr), gas, gasPrice, script) ) callerTx.Sign(keyPair.PrivateKey) -- cgit v1.2.3