Add note_encryption::CompactAction::cmx

This commit is contained in:
Kris Nuttycombe 2024-02-26 10:03:16 -07:00
parent 8cc96b5420
commit 9729cd8d26
2 changed files with 7 additions and 1 deletions

View File

@ -10,6 +10,7 @@ and this project adheres to Rust's notion of
### Added
- `impl subtle::ConstantTimeEq for note::Nullifier`
- `impl Clone for note_encryption::CompactAction`
- `note_encryption::CompactAction::cmx`
## [0.7.0] - 2024-01-26
### Licensing

View File

@ -326,10 +326,15 @@ impl CompactAction {
}
}
///Returns the nullifier of the note being spent.
/// Returns the nullifier of the note being spent.
pub fn nullifier(&self) -> Nullifier {
self.nullifier
}
/// Returns the commitment to the new note being created.
pub fn cmx(&self) -> ExtractedNoteCommitment {
self.cmx
}
}
#[cfg(test)]