diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-10 19:39:59 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-10 19:39:59 +0800 |
commit | 53f8f297449e2d53154a4ee7f71662d7c300ce77 (patch) | |
tree | 06ecea60f439be55b758b52ec318c90e01a42b5c /core | |
parent | a7538d0020d3a51ab3b25997b3c4f01db87d4c7a (diff) | |
parent | 0542df941f57a75fa7b699089db1d9ae40e4ff71 (diff) | |
download | dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar.gz dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar.bz2 dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar.lz dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar.xz dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.tar.zst dexon-53f8f297449e2d53154a4ee7f71662d7c300ce77.zip |
Merge branch 'develop' into rpcfrontier
Diffstat (limited to 'core')
-rw-r--r-- | core/block_processor.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/block_processor.go b/core/block_processor.go index 34c12729c..ea9d06841 100644 --- a/core/block_processor.go +++ b/core/block_processor.go @@ -261,7 +261,7 @@ func (sm *BlockProcessor) ValidateHeader(block, parent *types.Header) error { } if block.Time <= parent.Time { - return ValidationError("Block timestamp not after or equal to prev block (%v - %v)", block.Time, parent.Time) + return ValidationError("Block timestamp equal or less than previous block (%v - %v)", block.Time, parent.Time) } if int64(block.Time) > time.Now().Unix() { |