changed default variables back to previous values

This commit is contained in:
Alexander 2024-07-12 07:03:53 -04:00
parent 5e7b4283fc
commit dfeefa01d5
2 changed files with 4 additions and 4 deletions

View file

@ -3,11 +3,11 @@ from core import *
# set config variables # set config variables
buy_percent_diff_pdai = 20 buy_percent_diff_pdai = 20
buy_percent_diff_pusdc = 30 buy_percent_diff_pusdc = 30
buy_with_amount_pls = 30000 buy_with_amount_pls = 10000
slippage_percent = 5 slippage_percent = 5
wallet_min_pls = 20000 wallet_min_pls = 20000
loop_delay = 3 loop_delay = 3
rapid_gas_fee_limit = 777777 rapid_gas_fee_limit = 650000
# load wallet A and set address for logging # load wallet A and set address for logging
set_logging(wallet_a_address, 'INFO') set_logging(wallet_a_address, 'INFO')

View file

@ -2,12 +2,12 @@ from core import *
# set config variables # set config variables
sell_percent_diff_affection = 0 sell_percent_diff_affection = 0
sell_with_amount_affection = 500 sell_with_amount_affection = 200
slippage_percent = 5 slippage_percent = 5
wallet_min_pls = 20000 wallet_min_pls = 20000
loop_delay = 3 loop_delay = 3
loop_sell_delay = 10 loop_sell_delay = 10
rapid_gas_fee_limit = 777777 rapid_gas_fee_limit = 650000
# load wallet C and set address for logging # load wallet C and set address for logging
set_logging(wallet_c_address, 'INFO') set_logging(wallet_c_address, 'INFO')