From 2514be2b317c054d6fedef25de4561a17d3a5bc7 Mon Sep 17 00:00:00 2001 From: smypmsa Date: Thu, 27 Mar 2025 21:13:12 +0000 Subject: [PATCH] chore: update default params --- src/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.py b/src/config.py index 0a87f04..9b978e6 100644 --- a/src/config.py +++ b/src/config.py @@ -47,8 +47,8 @@ MAX_TOKEN_AGE: int | float = 0.1 # Maximum token age in seconds for processing # "on_fail": Only clean up if a buy transaction fails. # "after_sell": Clean up after selling, but only if the balance is zero. # "post_session": Clean up all empty accounts after a trading session ends. -CLEANUP_MODE: str = "after_sell" -CLEANUP_FORCE_CLOSE_WITH_BURN: bool = True # Burn remaining tokens before closing account, else skip ATA with non-zero balances +CLEANUP_MODE: str = "disabled" +CLEANUP_FORCE_CLOSE_WITH_BURN: bool = False # Burn remaining tokens before closing account, else skip ATA with non-zero balances CLEANUP_WITH_PRIORITY_FEE: bool = False # Use priority fees for cleanup transactions