Skip to content

Commit

Permalink
fixup! feat(offchain): implement the broker-listener for the authorit…
Browse files Browse the repository at this point in the history
…y-claimer
  • Loading branch information
marcelstanley committed Sep 8, 2023
1 parent 5808482 commit 92bf1ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions offchain/authority-claimer/src/claimer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use async_trait::async_trait;
use rollups_events::RollupsClaim;
use snafu::ResultExt;
use std::fmt::Debug;
use tracing::{info, trace};
use tracing::info;

use crate::{checker::DuplicateChecker, sender::TransactionSender};

Expand Down Expand Up @@ -65,7 +65,7 @@ where
.await
.context(DuplicatedClaimSnafu)?;
if is_duplicated_rollups_claim {
trace!("It was a duplicated claim");
info!("Duplicate claim will not be sent");
return Ok(self);
}

Expand Down

0 comments on commit 92bf1ed

Please sign in to comment.