Pārlūkot izejas kodu

Remove failing Printf

Taylor Gerring 11 gadi atpakaļ
vecāks
revīzija
1ecb3b4cf3
1 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  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())