diff options
author | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-11-22 02:22:14 +0800 |
---|---|---|
committer | Jeffrey Wilcke <obscuren@users.noreply.github.com> | 2014-11-22 02:22:14 +0800 |
commit | 4cd9d57bad95a8c2266ed9d33e9723631da0626f (patch) | |
tree | 0c3b37a486a9cf50c892d84f89adc7f06d37f0af /cmd | |
parent | cad770c73412c4b27d00c98ae3c531b9d1bcc091 (diff) | |
parent | 28b7dcc2041dfa945dc762f73f2524036517f328 (diff) | |
download | dexon-4cd9d57bad95a8c2266ed9d33e9723631da0626f.tar dexon-4cd9d57bad95a8c2266ed9d33e9723631da0626f.tar.gz dexon-4cd9d57bad95a8c2266ed9d33e9723631da0626f.tar.bz2 dexon-4cd9d57bad95a8c2266ed9d33e9723631da0626f.tar.lz dexon-4cd9d57bad95a8c2266ed9d33e9723631da0626f.tar.xz dexon-4cd9d57bad95a8c2266ed9d33e9723631da0626f.tar.zst dexon-4cd9d57bad95a8c2266ed9d33e9723631da0626f.zip |
Merge pull request #187 from honestmoney/develop
Fix for broken develop build and install.sh
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ethereum/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index ed42dfafb..88549b30a 100644 --- a/cmd/ethereum/main.go +++ b/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()) |