aboutsummaryrefslogtreecommitdiffstats
path: root/dev_console.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-01-28 22:35:19 +0800
committerobscuren <geffobscura@gmail.com>2014-01-28 22:35:19 +0800
commit6ab368cf7426195a0d44b14ad6d82c020c024395 (patch)
treed2ca5fc99fe3b76c80ad0e50e5f4da109fcc21b4 /dev_console.go
parent2619604549ee632289fbde2a3065fa8dcfe65a23 (diff)
downloadgo-tangerine-6ab368cf7426195a0d44b14ad6d82c020c024395.tar
go-tangerine-6ab368cf7426195a0d44b14ad6d82c020c024395.tar.gz
go-tangerine-6ab368cf7426195a0d44b14ad6d82c020c024395.tar.bz2
go-tangerine-6ab368cf7426195a0d44b14ad6d82c020c024395.tar.lz
go-tangerine-6ab368cf7426195a0d44b14ad6d82c020c024395.tar.xz
go-tangerine-6ab368cf7426195a0d44b14ad6d82c020c024395.tar.zst
go-tangerine-6ab368cf7426195a0d44b14ad6d82c020c024395.zip
Changed block chain specific methods
Diffstat (limited to 'dev_console.go')
-rw-r--r--dev_console.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev_console.go b/dev_console.go
index 91d911ec2..74ba343cd 100644
--- a/dev_console.go
+++ b/dev_console.go
@@ -128,7 +128,7 @@ func (i *Console) ParseInput(input string) bool {
fmt.Printf("%q\n", d)
case "getaddr":
encoded, _ := hex.DecodeString(tokens[1])
- d := i.ethereum.BlockManager.CurrentBlock.State().Get(string(encoded))
+ d := i.ethereum.BlockManager.BlockChain().CurrentBlock.State().Get(string(encoded))
if d != "" {
decoder := ethutil.NewRlpDecoder([]byte(d))
fmt.Println(decoder)