File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,11 +57,11 @@ impl<Db: Database> core::fmt::Display for BundleError<Db> {
57
57
Self :: BundleEmpty => write ! ( f, "bundle has no transactions" ) ,
58
58
Self :: Eip4844BlobGasExceeded => write ! ( f, "max blob gas limit exceeded" ) ,
59
59
Self :: UnsupportedTransactionType => write ! ( f, "unsupported transaction type" ) ,
60
- Self :: TransactionDecodingError ( _ ) => write ! ( f, "transaction decoding error" ) ,
61
- Self :: TransactionSenderRecoveryError ( _ ) => {
62
- write ! ( f, "transaction sender recovery error" )
60
+ Self :: TransactionDecodingError ( err ) => write ! ( f, "transaction decoding error: {}" , err ) ,
61
+ Self :: TransactionSenderRecoveryError ( err ) => {
62
+ write ! ( f, "transaction sender recovery error: {}" , err )
63
63
}
64
- Self :: EVMError { inner : _ } => write ! ( f, "internal EVM Error" ) ,
64
+ Self :: EVMError { inner } => write ! ( f, "EVM error: {}" , inner ) ,
65
65
}
66
66
}
67
67
}
You can’t perform that action at this time.
0 commit comments