aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-15 05:53:45 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-15 05:53:45 +0800
commit1ecb3b4cf358a9c8fb0152b54bde70c925eaa5c9 (patch)
tree095c58e7edd12e3d81a3c7c1f136f2608c1fcbab
parentdcd8cc83417750e93578fdce5b878f43ade8ac96 (diff)
downloadgo-tangerine-1ecb3b4cf358a9c8fb0152b54bde70c925eaa5c9.tar
go-tangerine-1ecb3b4cf358a9c8fb0152b54bde70c925eaa5c9.tar.gz
go-tangerine-1ecb3b4cf358a9c8fb0152b54bde70c925eaa5c9.tar.bz2
go-tangerine-1ecb3b4cf358a9c8fb0152b54bde70c925eaa5c9.tar.lz
go-tangerine-1ecb3b4cf358a9c8fb0152b54bde70c925eaa5c9.tar.xz
go-tangerine-1ecb3b4cf358a9c8fb0152b54bde70c925eaa5c9.tar.zst
go-tangerine-1ecb3b4cf358a9c8fb0152b54bde70c925eaa5c9.zip
Remove failing Printf
-rw-r--r--cmd/ethereum/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go
index ed42dfafb..c894a8f85 100644
--- a/cmd/ethereum/main.go
+++ b/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())