Skip to content

Commit

Permalink
persistence: fix MPC proof assignments in witness bundle consume
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Oct 12, 2024
1 parent 9807926 commit 92902ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/persistence/stash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -600,12 +600,12 @@ impl<P: StashProvider> Stash<P> {
| (
Anchor {
dbc_proof: DbcProof::Opret(opret),
mpc_proof: mpc_proof_tapret,
mpc_proof: mpc_proof_opret,
..
},
Some(Anchor {
dbc_proof: DbcProof::Tapret(tapret),
mpc_proof: mpc_proof_opret,
mpc_proof: mpc_proof_tapret,

Check warning on line 608 in src/persistence/stash.rs

View check run for this annotation

Codecov / codecov/patch

src/persistence/stash.rs#L602-L608

Added lines #L602 - L608 were not covered by tests
..
}),
) => AnchorSet::Double {
Expand Down

0 comments on commit 92902ce

Please sign in to comment.