Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
esemeniuc committed Oct 12, 2023
1 parent b439a05 commit f27da3a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tip-distributor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,8 +565,11 @@ pub async fn sign_and_send_transactions_with_retries_multi_rpc(
warn!("Error joining handle: {e:?}")
}
}
let transactions = blockhash_refresh_handle.await.unwrap();
(transactions, error_count.load(Ordering::Relaxed))
let remaining_transaction_count = blockhash_refresh_handle.await.unwrap();
(
remaining_transaction_count,
error_count.load(Ordering::Relaxed),
)
}

pub async fn sign_and_send_transactions_with_retries(
Expand Down

0 comments on commit f27da3a

Please sign in to comment.