Skip to content

Commit

Permalink
fix mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
NIXBNT committed May 27, 2024
1 parent 8aa51c3 commit c7db4ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane_bot/config/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c7db4ae

Please sign in to comment.