File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ To decouple the `Wallet` from the `Blockchain` we've made major changes:
17
17
18
18
- Removed ` Blockchain ` from Wallet.
19
19
- Removed ` Wallet::broadcast ` (just use ` Blockchain::broadcast ` )
20
- - Depreciated ` Wallet::new_offline ` (all wallets are offline now)
20
+ - Deprecated ` Wallet::new_offline ` (all wallets are offline now)
21
21
- Changed ` Wallet::sync ` to take a ` Blockchain ` .
22
22
- Stop making a request for the block height when calling ` Wallet:new ` .
23
23
- Added ` SyncOptions ` to capture extra (future) arguments to ` Wallet::sync ` .
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ where
233
233
self . network
234
234
}
235
235
236
- // Return a newly derived address using the external descriptor
236
+ // Return a newly derived address for the specified `keychain`.
237
237
fn get_new_address ( & self , keychain : KeychainKind ) -> Result < AddressInfo , Error > {
238
238
let incremented_index = self . fetch_and_increment_index ( keychain) ?;
239
239
You can’t perform that action at this time.
0 commit comments