aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-10 19:39:59 +0800
committerobscuren <geffobscura@gmail.com>2015-03-10 19:39:59 +0800
commit53f8f297449e2d53154a4ee7f71662d7c300ce77 (patch)
tree06ecea60f439be55b758b52ec318c90e01a42b5c /core
parenta7538d0020d3a51ab3b25997b3c4f01db87d4c7a (diff)
parent0542df941f57a75fa7b699089db1d9ae40e4ff71 (diff)
downloaddexon-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.go2
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() {