diff options
author | Maran <maran.hidskes@gmail.com> | 2014-03-17 18:15:28 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-03-17 18:15:28 +0800 |
commit | 2be2fc79740d942f9690268352465d117930f081 (patch) | |
tree | d5c7faec2888f6149be259d741ec3301b5bc75e5 /ethchain/state_manager.go | |
parent | 095d5baaed03f1077f39a468c11fb3aae1446a58 (diff) | |
parent | 826c827e6b1922604601f15361c962aef6f7f1a0 (diff) | |
download | go-tangerine-2be2fc79740d942f9690268352465d117930f081.tar go-tangerine-2be2fc79740d942f9690268352465d117930f081.tar.gz go-tangerine-2be2fc79740d942f9690268352465d117930f081.tar.bz2 go-tangerine-2be2fc79740d942f9690268352465d117930f081.tar.lz go-tangerine-2be2fc79740d942f9690268352465d117930f081.tar.xz go-tangerine-2be2fc79740d942f9690268352465d117930f081.tar.zst go-tangerine-2be2fc79740d942f9690268352465d117930f081.zip |
Merge branch 'develop' into miner
Diffstat (limited to 'ethchain/state_manager.go')
-rw-r--r-- | ethchain/state_manager.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethchain/state_manager.go b/ethchain/state_manager.go index c01084fc6..3be940745 100644 --- a/ethchain/state_manager.go +++ b/ethchain/state_manager.go @@ -266,7 +266,7 @@ func (sm *StateManager) ValidateBlock(block *Block) error { // Verify the nonce of the block. Return an error if it's not valid if !sm.Pow.Verify(block.HashNoNonce(), block.Difficulty, block.Nonce) { - return ValidationError("Block's nonce is invalid (= %v)", block.Nonce) + return ValidationError("Block's nonce is invalid (= %v)", ethutil.Hex(block.Nonce)) } return nil |