Skip to content

Commit aaceddf

Browse files
committed
DEBUG: log the original validation error
1 parent bb47ba7 commit aaceddf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

frame/evm/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -498,6 +498,7 @@ pub mod pallet {
498498

499499
impl<T> From<TransactionValidationError> for Error<T> {
500500
fn from(validation_error: TransactionValidationError) -> Self {
501+
log::info!("**** FRONTIER, frame/evm/src/lib.rs validation_error={:?}", validation_error);
501502
match validation_error {
502503
TransactionValidationError::GasLimitTooLow => Error::<T>::GasLimitTooLow,
503504
TransactionValidationError::GasLimitTooHigh => Error::<T>::GasLimitTooHigh,

0 commit comments

Comments
 (0)