Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ For a guide to settings up a development environment see [DEVELOPMENT.md](./DEVE
| [22][22] | Blind Authentication | :heavy_check_mark: |
| [23][23] | Payment Method: BOLT11 | :heavy_check_mark: |
| [25][25] | Payment Method: BOLT12 | :heavy_check_mark: |
| [28][28] | Pay-to-Blinded-Key (P2BK) | :heavy_check_mark: |


## License
Expand Down Expand Up @@ -120,3 +121,4 @@ Please see the [development guide](DEVELOPMENT.md).
[22]: https://github.com/cashubtc/nuts/blob/main/22.md
[23]: https://github.com/cashubtc/nuts/blob/main/23.md
[25]: https://github.com/cashubtc/nuts/blob/main/25.md
[28]: https://github.com/cashubtc/nuts/blob/main/28.md
1 change: 1 addition & 0 deletions crates/cashu/src/dhke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ pub fn construct_proofs(
c: unblinded_signature,
witness: None,
dleq,
p2pk_e: None,
};

proofs.push(proof);
Expand Down
1 change: 1 addition & 0 deletions crates/cashu/src/nuts/auth/nut22.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@ impl From<AuthProof> for Proof {
c: value.c,
witness: None,
dleq: value.dleq,
p2pk_e: None,
}
}
}
Expand Down
1 change: 1 addition & 0 deletions crates/cashu/src/nuts/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ pub mod nut19;
pub mod nut20;
pub mod nut23;
pub mod nut25;
pub mod nut28;

#[cfg(feature = "auth")]
mod auth;
Expand Down
Loading