Skip to content

Commit

Permalink
chore: fix honeypot test buy printing
Browse files Browse the repository at this point in the history
  • Loading branch information
JayArrowz committed Aug 31, 2021
1 parent 06488d8 commit 9565d41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SniperService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private async Task PairCreated(EventLog<PairCreatedEvent> pairCreated)
return;
}
Log.Logger.Information("Starting Honeypot check for {0} with amount {1}", symbol, _sniperConfig.HoneypotCheckAmount);
var buySuccess = await _tradeHandler.Buy(otherPairAddress, otherTokenIdx, pair.Pair, _sniperConfig.HoneypotCheckAmount);
var buySuccess = await _tradeHandler.Buy(otherPairAddress, otherTokenIdx, pair.Pair, _sniperConfig.HoneypotCheckAmount, true);
if (!buySuccess)
{
Log.Logger.Fatal("Honeypot check failed could not buy token: {0}", pair.Symbol);
Expand Down

0 comments on commit 9565d41

Please sign in to comment.