refactor: rm dupe InvalidTransactionErrors (#2737)

This commit is contained in:
Bjerg
2023-05-19 10:13:33 +02:00
committed by GitHub
parent 1c60e680f9
commit 7b7805a4cc
4 changed files with 29 additions and 29 deletions

View File

@ -89,7 +89,7 @@ pub enum ConsensusError {
GasLimitInvalidDecrease { parent_gas_limit: u64, child_gas_limit: u64 },
#[error("Base fee missing.")]
BaseFeeMissing,
#[error("Block base fee ({got}) is different then expected: ({expected}).")]
#[error("Block base fee ({got}) is different than expected: ({expected}).")]
BaseFeeDiff { expected: u64, got: u64 },
#[error("Transaction signer recovery error.")]
TransactionSignerRecoveryError,