From c7db4aeec8d8fe7f9c9c6dc9201d39a70610b6e6 Mon Sep 17 00:00:00 2001 From: Nicholas Welch Date: Tue, 28 May 2024 04:32:30 +1000 Subject: [PATCH] fix mistake --- fastlane_bot/config/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane_bot/config/network.py b/fastlane_bot/config/network.py index 4743d4937..f893d4380 100644 --- a/fastlane_bot/config/network.py +++ b/fastlane_bot/config/network.py @@ -287,7 +287,7 @@ class ConfigNetwork(ConfigBase): @staticmethod def gas_strategy(web3): gas_price = web3.eth.gas_price # send `eth_gasPrice` request - max_priority_fee = 0 #web3.eth.max_priority_fee # send `eth_maxPriorityFeePerGas` request + max_priority_fee = web3.eth.max_priority_fee # send `eth_maxPriorityFeePerGas` request return { "maxFeePerGas": gas_price + max_priority_fee, "maxPriorityFeePerGas": max_priority_fee