aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain
diff options
context:
space:
mode:
Diffstat (limited to 'ethchain')
-rw-r--r--ethchain/state_manager.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethchain/state_manager.go b/ethchain/state_manager.go
index a12ce53e5..f28f45eab 100644
--- a/ethchain/state_manager.go
+++ b/ethchain/state_manager.go
@@ -312,9 +312,9 @@ func (sm *StateManager) ValidateBlock(block *Block) error {
}
}
- diff := block.Time - sm.bc.CurrentBlock.Time
+ diff := block.Time - previousBlock.Time
if diff < 0 {
- return ValidationError("Block timestamp less then prev block %v", diff)
+ return ValidationError("Block timestamp less then prev block %v (%v - %v)", diff, block.Time, sm.bc.CurrentBlock.Time)
}
/* XXX