Cargo fmt

This commit is contained in:
Godmode Galactus 2023-09-15 09:27:31 +02:00
parent c50537eec4
commit 8c795345dd
No known key found for this signature in database
GPG Key ID: A04142C71ABB0DEA
1 changed files with 2 additions and 1 deletions

View File

@ -82,7 +82,8 @@ impl TransactionReplayer {
if tx_replay.replay_count < tx_replay.max_replay {
tx_replay.replay_count += 1;
tx_replay.replay_at = Instant::now() + retry_after.mul_f32(tx_replay.replay_count as f32);
tx_replay.replay_at =
Instant::now() + retry_after.mul_f32(tx_replay.replay_count as f32);
sender.send(tx_replay).context("replay channel closed")?;
MESSAGES_IN_REPLAY_QUEUE.inc();
}