Add `get_memo` change to the zcash_client_backend CHANGELOG

This commit is contained in:
Kris Nuttycombe 2023-05-17 08:56:24 -06:00
parent d99b4d4d6e
commit ea84243e0f
1 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,9 @@ and this library adheres to Rust's notion of
## [Unreleased]
### Changed
- Bumped dependencies to `hdwallet 0.4`.
- `WalletRead::get_memo` now returns `Result<Option<Memo>, Self::Error>`
instead of `Result<Memo, Self::Error>` in order to make representable
wallet states where the full note plaintext is not available.
## [0.9.0] - 2023-04-28
### Added
@ -19,7 +22,7 @@ and this library adheres to Rust's notion of
to allow reuse of the data structure for non-Sapling contexts.
- `data_api::SentTransactionOutput` must now be constructed using
`SentTransactionOutput::from_parts`. The internal state of `SentTransactionOutput`
is now private, and accessible via methods that have the same names as the
is now private, and accessible via methods that have the same names as the
previously exposed fields.
### Renamed