diff options
author | Eric Robitaille <eric@vianet.ca> | 2014-11-21 03:16:22 +0800 |
---|---|---|
committer | Eric Robitaille <eric@vianet.ca> | 2014-11-21 03:16:22 +0800 |
commit | 0f471291134c0b38df07b9a9cffda5c9807435ae (patch) | |
tree | 1e7cb124f79b7d684ad5ee3755496522b328ca5c | |
parent | cad770c73412c4b27d00c98ae3c531b9d1bcc091 (diff) | |
download | dexon-0f471291134c0b38df07b9a9cffda5c9807435ae.tar dexon-0f471291134c0b38df07b9a9cffda5c9807435ae.tar.gz dexon-0f471291134c0b38df07b9a9cffda5c9807435ae.tar.bz2 dexon-0f471291134c0b38df07b9a9cffda5c9807435ae.tar.lz dexon-0f471291134c0b38df07b9a9cffda5c9807435ae.tar.xz dexon-0f471291134c0b38df07b9a9cffda5c9807435ae.tar.zst dexon-0f471291134c0b38df07b9a9cffda5c9807435ae.zip |
Updated main.go - fix for broken develop build
Transaction execution fixes - 60cdb1148c404218846fd39331690658168f4e04
-rw-r--r-- | cmd/ethereum/main.go | 2 |
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()) |