From 1448b9559eb9712d1840a030284b470d574720ca Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 7 Jan 2020 18:18:22 +0100 Subject: [PATCH] consensus/ethash: update error message --- consensus/ethash/consensus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/ethash/consensus.go b/consensus/ethash/consensus.go index ea2f3f59fb..8ae99b1994 100644 --- a/consensus/ethash/consensus.go +++ b/consensus/ethash/consensus.go @@ -68,7 +68,7 @@ var ( // codebase, inherently breaking if the engine is swapped out. Please put common // error types into the consensus package. var ( - errOlderBlockTime = errors.New("header timestamp is older or same as parent's") + errOlderBlockTime = errors.New("timestamp older than parent") errTooManyUncles = errors.New("too many uncles") errDuplicateUncle = errors.New("duplicate uncle") errUncleIsAncestor = errors.New("uncle is ancestor")