Updated main.go - fix for broken develop build

Transaction execution fixes - 60cdb1148c
This commit is contained in:
Eric Robitaille 2014-11-20 14:16:22 -05:00
parent cad770c734
commit 0f47129113
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ func main() {
os.Exit(1) 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 // Leave the Println. This needs clean output for piping
fmt.Printf("%s\n", block.State().Dump()) fmt.Printf("%s\n", block.State().Dump())