From a09fe474c49638d9d9afb9672451ed5ece15e78f Mon Sep 17 00:00:00 2001 From: cezary-stroczynski Date: Mon, 1 Dec 2025 17:37:11 +0100 Subject: [PATCH] OWEN - increase gas fee --- owen/src/contracts.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/owen/src/contracts.rs b/owen/src/contracts.rs index 507c044..430e97f 100644 --- a/owen/src/contracts.rs +++ b/owen/src/contracts.rs @@ -112,11 +112,9 @@ impl ContractsManager { .sidecar(transaction_data.blob_sidecar) .max_fee_per_blob_gas(1000000001); - if is_local() { - tx_builder = tx_builder - .max_priority_fee_per_gas(500000000) - .max_fee_per_gas(500000001); - } + tx_builder = tx_builder + .max_priority_fee_per_gas(5000000000) + .max_fee_per_gas(5000000001); let tx_request = tx_builder.into_transaction_request().gas_limit(300000);