forked from bitcoindevkit/bdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge bitcoindevkit#1235: Refactor/rename electrum_ext and esplora_ex…
…t to have sync and full_scan functions de54e71 refactor(esplora_ext): rename scan_txs to sync and scan_txs_with_keychains to full_scan (Steve Myers) 95d3485 refactor(electrum_ext): rename scan_without_keychain to sync and scan to full_scan (Steve Myers) Pull request description: ### Description fixes bitcoindevkit#1112 Simple function renaming plus updated docs: 1. electrum_ext: rename functions `scan_without_keychain` to `sync` and `scan` to `full_scan` 2. esplora_ext: rename functions `scan_txs` to `sync` and `scan_txs_with_keychains` to `full_scan` ### Notes to the reviewers The esplora_ext changes were partially fixed in bitcoindevkit#1070 but I renamed again so the functions match names ~~suggested in bitcoindevkit#1112~~ agreed on in discord poll, `sync` and `full_scan`. ### Changelog notice Changed - electrum_ext: rename functions scan_without_keychain to sync and scan to full_scan - esplora_ext: rename functions scan_txs to sync and scan_txs_with_keychains to full_scan ### Checklists #### All Submissions: * [x] I've signed all my commits * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [x] I ran `cargo fmt` and `cargo clippy` before committing Top commit has no ACKs. Tree-SHA512: d34516ecc513a194b679f73a1260d0cbc3d12b6a2e162d822e7381da0b3250aff319e85ed2fadec506e36f95a78a5cd79d0ab972da2b02928c074be17664da08
- Loading branch information
Showing
14 changed files
with
208 additions
and
221 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# BDK Electrum | ||
|
||
BDK Electrum client library for updating the keychain tracker. | ||
BDK Electrum extends [`electrum-client`] to update [`bdk_chain`] structures | ||
from an Electrum server. | ||
|
||
[`electrum-client`]: https://docs.rs/electrum-client/ | ||
[`bdk_chain`]: https://docs.rs/bdk-chain/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.