Skip to content

Commit

Permalink
minors
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman committed Dec 16, 2024
1 parent 8e7893f commit a99a85e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rewards/src/services/namada.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ pub async fn query_rewards(
.collect::<Vec<_>>()
.await;

tracing::info!("Done fetching rewards!");

for result in results {
match result {
Ok(mut rewards) => all_rewards.append(&mut rewards),
Expand Down Expand Up @@ -87,8 +89,6 @@ async fn process_batch_with_retries(
loop {
let result = process_batch(client, batch.clone()).await;

tracing::info!("Done batch...");

match result {
Ok(rewards) => return Ok(rewards),
Err(err) => {
Expand Down

0 comments on commit a99a85e

Please sign in to comment.