Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
volovyks committed Nov 19, 2024
1 parent ae3430b commit e20f3a7
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions chain-signatures/node/src/protocol/presignature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,10 @@ impl PresignatureManager {
return;
}
if self.contains_used(&presignature.id).await {
tracing::error!(id = presignature.id, "tried to insert used mine presignature");
tracing::error!(
id = presignature.id,
"tried to insert used mine presignature"
);
return;
}
// Remove from taken list if it was there
Expand All @@ -209,7 +212,10 @@ impl PresignatureManager {
return;
}
if self.contains_used(&presignature.id).await {
tracing::error!(id = presignature.id, "tried to insert used mine presignature");
tracing::error!(
id = presignature.id,
"tried to insert used mine presignature"
);
return;
}
// Remove from taken list if it was there
Expand Down

0 comments on commit e20f3a7

Please sign in to comment.