Skip to content

Commit 886f72f

Browse files
authored
Apply suggestions from code review
1 parent 19dedb7 commit 886f72f

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

zcash_client_backend/CHANGELOG.md

+11-10
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,21 @@ and this library adheres to Rust's notion of
77

88
## [Unreleased]
99

10+
### Deprecated
11+
- `AccountBalance::unshielded`. Instead use `unshielded_balance` which provides a `Balance`
12+
value. Its `total()` method can be used to obtain the total of transparent funds.
13+
1014
### Changed
1115
- `zcash_client_backend::data_api::AccountBalance`:
1216
- Refactored to use `Balance` for transparent funds (issue #1411).
1317
`AccountBalance` now has an `unshielded_balance()` that uses `Balance` and replaces the
14-
(now deleted) `unshielded` non-negative amount.
18+
tracking of only total unshielded balance.
19+
- `zcash_client_backend::AccountBalance::add_unshielded_value`. Instead use
20+
`AccountBalance::with_unshielded_balance_mut` with a closure that calls
21+
the appropriate `add_*_value` method(s) of `Balance` on its argument.
22+
Note that the appropriate method(s) depend on whether the funds are
23+
spendable, pending change, or pending non-change (previously, only the
24+
total unshielded value was tracked).
1525
- `zcash_client_backend::data_api::WalletRead`:
1626
- The `create_account`, `import_account_hd`, and `import_account_ufvk`
1727
methods now each take additional `account_name` and `key_source` arguments.
@@ -109,15 +119,6 @@ and this library adheres to Rust's notion of
109119

110120
### Removed
111121
- `zcash_client_backend::data_api`:
112-
- `AccountBalance::unshielded`. `AccountBalance` no longer provides the `unshielded`
113-
method returning a `NonNegativeAmount` for the total of transparent funds.
114-
Instead use `unshielded_balance` which provides a `Balance` value.
115-
- `zcash_client_backend::AccountBalance::add_unshielded_value`. Instead use
116-
`AccountBalance::with_unshielded_balance_mut` with a closure that calls
117-
the appropriate `add_*_value` method(s) of `Balance` on its argument.
118-
Note that the appropriate method(s) depend on whether the funds are
119-
spendable, pending change, or pending non-change (previously, only the
120-
total unshielded value was tracked).
121122
- `WalletSummary::scan_progress` and `WalletSummary::recovery_progress` have
122123
been removed. Use `WalletSummary::progress` instead.
123124
- `testing::input_selector` use explicit `InputSelector` constructors

0 commit comments

Comments
 (0)