mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-30 03:01:58 -04:00
fix: check for missing prio fee in eth simulate (#15601)
This commit is contained in:
@@ -157,9 +157,11 @@ where
|
||||
}
|
||||
}
|
||||
_ => {
|
||||
// set dynamic 1559 fee
|
||||
// set dynamic 1559 fees
|
||||
if tx.max_fee_per_gas.is_none() {
|
||||
tx.max_fee_per_gas = Some(0);
|
||||
}
|
||||
if tx.max_priority_fee_per_gas.is_none() {
|
||||
tx.max_priority_fee_per_gas = Some(0);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user