mirror of
https://github.com/fdundjer/solana-sniper-bot.git
synced 2026-06-22 04:11:27 +10:00
fix: fix output
This commit is contained in:
@@ -109,9 +109,15 @@ function printDetails(wallet: Keypair, quoteToken: Token, bot: Bot) {
|
||||
logger.info(`Take profit: ${botConfig.takeProfit}%`);
|
||||
logger.info(`Stop loss: ${botConfig.stopLoss}%`);
|
||||
|
||||
logger.info('- Filters -');
|
||||
logger.info('- Snipe list -');
|
||||
logger.info(`Snipe list: ${botConfig.useSnipeList}`);
|
||||
logger.info(`Snipe list refresh interval: ${SNIPE_LIST_REFRESH_INTERVAL} ms`);
|
||||
|
||||
if (botConfig.useSnipeList) {
|
||||
logger.info('- Filters -');
|
||||
logger.info(`Filters are disabled when snipe list is on`);
|
||||
} else {
|
||||
logger.info('- Filters -');
|
||||
logger.info(`Filter check interval: ${botConfig.filterCheckInterval} ms`);
|
||||
logger.info(`Filter check duration: ${botConfig.filterCheckDuration} ms`);
|
||||
logger.info(`Consecutive filter matches: ${botConfig.consecutiveMatchCount}`);
|
||||
@@ -120,6 +126,7 @@ function printDetails(wallet: Keypair, quoteToken: Token, bot: Bot) {
|
||||
logger.info(`Check burned: ${botConfig.checkBurned}`);
|
||||
logger.info(`Min pool size: ${botConfig.minPoolSize.toFixed()}`);
|
||||
logger.info(`Max pool size: ${botConfig.maxPoolSize.toFixed()}`);
|
||||
}
|
||||
|
||||
logger.info('------- CONFIGURATION END -------');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user