We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 245c36d + a09fe47 commit 21b7c55Copy full SHA for 21b7c55
1 file changed
owen/src/contracts.rs
@@ -112,11 +112,9 @@ impl ContractsManager {
112
.sidecar(transaction_data.blob_sidecar)
113
.max_fee_per_blob_gas(1000000001);
114
115
- if is_local() {
116
- tx_builder = tx_builder
117
- .max_priority_fee_per_gas(500000000)
118
- .max_fee_per_gas(500000001);
119
- }
+ tx_builder = tx_builder
+ .max_priority_fee_per_gas(5000000000)
+ .max_fee_per_gas(5000000001);
120
121
let tx_request = tx_builder.into_transaction_request().gas_limit(300000);
122
0 commit comments