more logging

Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2023-07-28 11:53:50 +02:00
parent 7d942cc4ff
commit 7752d398fe
1 changed files with 8 additions and 0 deletions

View File

@ -70,6 +70,12 @@ async fn tcs_is_interesting(
token_swap_info: &token_swap_info::TokenSwapInfoUpdater,
now_ts: u64,
) -> anyhow::Result<bool> {
info!("{} {}", tcs.is_expired(now_ts), "tcs.is_expired(now_ts)");
info!(
"{} {}",
tcs.tcs_has_plausible_premium(tcs, token_swap_info),
"tcs.tcs_has_plausible_premium(tcs, token_swap_info)"
);
Ok(!tcs.is_expired(now_ts)
&& tcs_is_in_price_range(mango_client, tcs).await?
&& tcs_has_plausible_premium(tcs, token_swap_info)?)
@ -287,6 +293,8 @@ pub async fn maybe_execute_token_conditional_swap(
tcs_shuffled.shuffle(&mut rng);
}
info!("{} {}", tcs_shuffled.len(), "tcs_shuffled.len()");
for tcs in tcs_shuffled.iter() {
if tcs_is_interesting(mango_client, tcs, token_swap_info, now_ts).await? {
return maybe_execute_token_conditional_swap_inner(