From 8defbbd8cb2b63d5503dd1edb1346b164691316f Mon Sep 17 00:00:00 2001 From: barak manos <> Date: Tue, 6 Feb 2024 16:27:01 +0200 Subject: [PATCH] Cosmetic --- fastlane_bot/helpers/txhelpers.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/fastlane_bot/helpers/txhelpers.py b/fastlane_bot/helpers/txhelpers.py index a00eaee68..8000e4c03 100644 --- a/fastlane_bot/helpers/txhelpers.py +++ b/fastlane_bot/helpers/txhelpers.py @@ -895,8 +895,6 @@ def check_if_token_approved(self, token_address: str, owner_address = None, spen else: return False - - def approve_token_for_arb_contract(self, token_address: str, approval_amount: int = 115792089237316195423570985008687907853269984665640564039457584007913129639935): """ This function submits a token approval to the Arb Contract. The default approval amount is the max approval. @@ -969,6 +967,3 @@ def _get_layer_one_gas_fee(self, rawTransaction, ethereum_base_fee: int, fixed_o l1_data_fee = tx_total_gas * ethereum_base_fee ## Dividing by 10 ** 24 because dynamic_overhead is returned in PPM format, and to convert this from WEI format to decimal format (10 ** 18). return Decimal(f"{l1_data_fee}e-24") - - -