tx-pool: fix ExceedsGasLimit error message order (#12191)

This commit is contained in:
Thomas Coratger
2024-10-30 12:30:49 +01:00
committed by GitHub
parent 6e794ee673
commit 2778ba3d52

View File

@@ -628,8 +628,8 @@ impl<T: TransactionOrdering> TxPool<T> {
*transaction.hash(),
PoolErrorKind::InvalidTransaction(
InvalidPoolTransactionError::ExceedsGasLimit(
block_gas_limit,
tx_gas_limit,
block_gas_limit,
),
),
)),