diff --git a/components/zcash_protocol/CHANGELOG.md b/components/zcash_protocol/CHANGELOG.md index 6c6d200898..839e3b0845 100644 --- a/components/zcash_protocol/CHANGELOG.md +++ b/components/zcash_protocol/CHANGELOG.md @@ -33,6 +33,13 @@ The entries below are relative to the `zcash_primitives` crate as of the tag ### Changed - `zcash_protocol::value::COIN` has been changed from an `i64` to a `u64` - `zcash_protocol::value::MAX_MONEY` has been changed from an `i64` to a `u64` +- `zcash_protocol::consensus::Parameters` has been split into two traits, with + the newly added `NetworkConstants` trait providing all network constant + accessors. Also, the `address_network` method has been replaced with a new + `network_type` method that serves the same purpose. A blanket impl of + `NetworkConstants` is provided for all types that implement `Parameters`, + so call sites for methods that have moved to `NetworkConstants` should + remain unchanged (though they may require an additional `use` statement.) ### Removed - From `zcash_protocol::value`: @@ -46,7 +53,3 @@ The entries below are relative to the `zcash_primitives` crate as of the tag - `TryFrom for NonNegativeAmount` - `impl AddAssign for NonNegativeAmount` - `impl SubAssign for NonNegativeAmount` -- `zcash_protocol::consensus::Parameters` has been split into two traits, with - the `NetworkConstants` trait providing all network constant accessors. Also, - the `address_network` method has been replaced with a new `network_type` - method that serves the same purpose. diff --git a/zcash_client_sqlite/CHANGELOG.md b/zcash_client_sqlite/CHANGELOG.md index 524d8dfb64..fbf30976e6 100644 --- a/zcash_client_sqlite/CHANGELOG.md +++ b/zcash_client_sqlite/CHANGELOG.md @@ -16,6 +16,8 @@ and this library adheres to Rust's notion of - `zcash_client_sqlite::error::SqliteClientError` has changed variants: - Added `AddressGeneration` - Removed `DiversifierIndexOutOfRange` +- `zcash_client_sqlite::wallet::init::WalletMigrationError` has added variant + `AddressGeneration` ## [0.9.0] - 2024-03-01