瀏覽代碼

Remove failing Printf

Taylor Gerring 11 年之前
父節點
當前提交
1ecb3b4cf3
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      cmd/ethereum/main.go

+ 2 - 1
cmd/ethereum/main.go

@@ -93,7 +93,8 @@ func main() {
 			os.Exit(1)
 		}
 
-		fmt.Printf("RLP: %x\nstate: %x\nhash: %x\n", ethutil.Rlp(block), block.GetRoot(), block.Hash())
+		// block.GetRoot() does not exist
+		//fmt.Printf("RLP: %x\nstate: %x\nhash: %x\n", ethutil.Rlp(block), block.GetRoot(), block.Hash())
 
 		// Leave the Println. This needs clean output for piping
 		fmt.Printf("%s\n", block.State().Dump())