We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea3779f commit c4914e2Copy full SHA for c4914e2
1 file changed
aggregation_mode/proof_aggregator/src/backend/mod.rs
@@ -560,6 +560,9 @@ impl ProofAggregator {
560
let new_priority_fee = priority_fee_wei;
561
562
Ok(tx_req
563
+ // In TransactionRequest docs the gas_price field is defined as
564
+ // "The max base fee per gas the sender is willing to pay."
565
+ .with_gas_price(new_base_fee as u128)
566
.with_max_fee_per_gas(new_max_fee as u128)
567
.with_max_priority_fee_per_gas(new_priority_fee as u128))
568
}
0 commit comments