aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorEric Robitaille <eric@vianet.ca>2014-11-21 03:16:22 +0800
committerEric Robitaille <eric@vianet.ca>2014-11-21 03:16:22 +0800
commit0f471291134c0b38df07b9a9cffda5c9807435ae (patch)
tree1e7cb124f79b7d684ad5ee3755496522b328ca5c /cmd
parentcad770c73412c4b27d00c98ae3c531b9d1bcc091 (diff)
downloadgo-tangerine-0f471291134c0b38df07b9a9cffda5c9807435ae.tar
go-tangerine-0f471291134c0b38df07b9a9cffda5c9807435ae.tar.gz
go-tangerine-0f471291134c0b38df07b9a9cffda5c9807435ae.tar.bz2
go-tangerine-0f471291134c0b38df07b9a9cffda5c9807435ae.tar.lz
go-tangerine-0f471291134c0b38df07b9a9cffda5c9807435ae.tar.xz
go-tangerine-0f471291134c0b38df07b9a9cffda5c9807435ae.tar.zst
go-tangerine-0f471291134c0b38df07b9a9cffda5c9807435ae.zip
Updated main.go - fix for broken develop build
Transaction execution fixes - 60cdb1148c404218846fd39331690658168f4e04
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ethereum/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go
index ed42dfafb..88549b30a 100644
--- a/cmd/ethereum/main.go
+++ b/cmd/ethereum/main.go
@@ -93,7 +93,7 @@ func main() {
os.Exit(1)
}
- fmt.Printf("RLP: %x\nstate: %x\nhash: %x\n", ethutil.Rlp(block), block.GetRoot(), block.Hash())
+ fmt.Printf("RLP: %x\nstate: %x\nhash: %x\n", ethutil.Rlp(block), block.Root(), block.Hash())
// Leave the Println. This needs clean output for piping
fmt.Printf("%s\n", block.State().Dump())