aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/ethereum/main.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-11-19 02:48:35 +0800
committerobscuren <geffobscura@gmail.com>2014-11-19 02:48:35 +0800
commit675ba4d7eb7ab96fa74b803085f042a25f8d8d42 (patch)
treecc8ee5c2cd3f80e943a336d9820539ea2ebce4d2 /cmd/ethereum/main.go
parentf8d0cd9906a1ec4a4a1e95868a279312363f8b49 (diff)
parent5c958ec5f658709b648647449ce5349aa98b3d5d (diff)
downloaddexon-675ba4d7eb7ab96fa74b803085f042a25f8d8d42.tar.gz
dexon-675ba4d7eb7ab96fa74b803085f042a25f8d8d42.tar.zst
dexon-675ba4d7eb7ab96fa74b803085f042a25f8d8d42.zip
Merge branch 'tests' into poc8
Diffstat (limited to 'cmd/ethereum/main.go')
-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())