diff options
Diffstat (limited to 'dev_console.go')
-rw-r--r-- | dev_console.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev_console.go b/dev_console.go index 09e06aa22..5a69ffa9e 100644 --- a/dev_console.go +++ b/dev_console.go @@ -158,7 +158,7 @@ func (i *Console) ParseInput(input string) bool { fmt.Println(value) case "getaddr": encoded, _ := hex.DecodeString(tokens[1]) - addr := i.ethereum.BlockManager.BlockChain().CurrentBlock.GetAddr(encoded) + addr := i.ethereum.BlockManager.BlockChain().CurrentBlock.State().GetAccount(encoded) fmt.Println("addr:", addr) case "block": encoded, _ := hex.DecodeString(tokens[1]) |