@@ -7,11 +7,21 @@ and this library adheres to Rust's notion of
7
7
8
8
## [ Unreleased]
9
9
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
+
10
14
### Changed
11
15
- ` zcash_client_backend::data_api::AccountBalance ` :
12
16
- Refactored to use ` Balance ` for transparent funds (issue #1411 ).
13
17
` 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).
15
25
- ` zcash_client_backend::data_api::WalletRead ` :
16
26
- The ` create_account ` , ` import_account_hd ` , and ` import_account_ufvk `
17
27
methods now each take additional ` account_name ` and ` key_source ` arguments.
@@ -109,15 +119,6 @@ and this library adheres to Rust's notion of
109
119
110
120
### Removed
111
121
- ` 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).
121
122
- ` WalletSummary::scan_progress ` and ` WalletSummary::recovery_progress ` have
122
123
been removed. Use ` WalletSummary::progress ` instead.
123
124
- ` testing::input_selector ` use explicit ` InputSelector ` constructors
0 commit comments