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 @@ -54,11 +54,11 @@ impl<Db: Database> core::fmt::Display for BundleError<Db> {
54
54
Self :: BundleEmpty => write ! ( f, "bundle has no transactions" ) ,
55
55
Self :: Eip4844BlobGasExceeded => write ! ( f, "max blob gas limit exceeded" ) ,
56
56
Self :: UnsupportedTransactionType => write ! ( f, "unsupported transaction type" ) ,
57
- Self :: TransactionDecodingError ( _ ) => write ! ( f, "transaction decoding error" ) ,
58
- Self :: TransactionSenderRecoveryError ( _ ) => {
59
- write ! ( f, "transaction sender recovery error" )
57
+ Self :: TransactionDecodingError ( err ) => write ! ( f, "transaction decoding error: {}" , err ) ,
58
+ Self :: TransactionSenderRecoveryError ( err ) => {
59
+ write ! ( f, "transaction sender recovery error: {}" , err )
60
60
}
61
- Self :: EVMError { inner : _ } => write ! ( f, "internal EVM Error" ) ,
61
+ Self :: EVMError { inner } => write ! ( f, "internal EVM error: {}" , inner ) ,
62
62
}
63
63
}
64
64
}
You can’t perform that action at this time.
0 commit comments