From dc3a9379f50d0d5b41abc28acc2a871534968a77 Mon Sep 17 00:00:00 2001 From: obscuren Date: Mon, 23 Mar 2015 16:14:33 +0100 Subject: logging for possible uncles --- core/error.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'core/error.go') diff --git a/core/error.go b/core/error.go index f6ac26cff..0642948cd 100644 --- a/core/error.go +++ b/core/error.go @@ -9,8 +9,9 @@ import ( ) var ( - BlockNumberErr = errors.New("block number invalid") - BlockFutureErr = errors.New("block time is in the future") + BlockNumberErr = errors.New("block number invalid") + BlockFutureErr = errors.New("block time is in the future") + BlockEqualTSErr = errors.New("block time stamp equal to previous") ) // Parent error. In case a parent is unknown this error will be thrown -- cgit