Skip to content

Commit

Permalink
Merge branch 'dichotomies' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Oct 12, 2024
2 parents 0f5419f + 9807926 commit f25e0f1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/containers/consignment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,7 @@ impl<const TRANSFER: bool> Consignment<TRANSFER> {
for mut witness_bundle in self.bundles {
for (bundle_id, secret) in &self.terminals {
if let Some(seal) = f(*secret)? {
if witness_bundle.reveal_seal(*bundle_id, seal) {
break;
}
witness_bundle.reveal_seal(*bundle_id, seal);

Check warning on line 299 in src/containers/consignment.rs

View check run for this annotation

Codecov / codecov/patch

src/containers/consignment.rs#L299

Added line #L299 was not covered by tests
}
}
bundles.push(witness_bundle).ok();
Expand Down

0 comments on commit f25e0f1

Please sign in to comment.