소스 검색

Updated main.go - fix for broken develop build

Transaction execution fixes - 60cdb1148c404218846fd39331690658168f4e04
Eric Robitaille 11 년 전
부모
커밋
0f47129113
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      cmd/ethereum/main.go

+ 1 - 1
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())