Skip to content

Commit

Permalink
fix: set blank output amounts to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ngutech21 committed Jan 9, 2024
1 parent 0c68289 commit b799cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moksha-core/src/blind.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl BlindedMessage {
let (b_, alice_secret_key) = dhke.step1_alice(secret.clone(), None).unwrap(); // FIXME
(
BlindedMessage {
amount: 0,
amount: 1,
b_,
id: keyset_id.clone(),
},
Expand Down

0 comments on commit b799cd2

Please sign in to comment.