Skip to content

Commit 2263a58

Browse files
refactor: Rename wallet_esplora to...
...`wallet_esplora_blocking`
1 parent 11ac26f commit 2263a58

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = [
88
"example-crates/example_cli",
99
"example-crates/example_electrum",
1010
"example-crates/wallet_electrum",
11-
"example-crates/wallet_esplora",
11+
"example-crates/wallet_esplora_blocking",
1212
"example-crates/wallet_esplora_async",
1313
"nursery/tmp_plan",
1414
"nursery/coin_select"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The project is split up into several crates in the `/crates` directory:
4848
Fully working examples of how to use these components are in `/example-crates`:
4949
- [`example_cli`](./example-crates/example_cli): Library used by the `example_*` crates. Provides utilities for syncing, showing the balance, generating addresses and creating transactions without using the bdk `Wallet`.
5050
- [`example_electrum`](./example-crates/example_electrum): A command line Bitcoin wallet application built on top of `example_cli` and the `electrum` crate. It shows the power of the bdk tools (`chain` + `file_store` + `electrum`), without depending on the main `bdk` library.
51-
- [`wallet_esplora`](./example-crates/wallet_esplora): Uses the `Wallet` to sync and spend using the Esplora blocking interface.
51+
- [`wallet_esplora_blocking`](./example-crates/wallet_esplora_blocking): Uses the `Wallet` to sync and spend using the Esplora blocking interface.
5252
- [`wallet_esplora_async`](./example-crates/wallet_esplora_async): Uses the `Wallet` to sync and spend using the Esplora asynchronous interface.
5353
- [`wallet_electrum`](./example-crates/wallet_electrum): Uses the `Wallet` to sync and spend using Electrum.
5454

example-crates/wallet_esplora/Cargo.toml renamed to example-crates/wallet_esplora_blocking/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "wallet_esplora"
2+
name = "wallet_esplora_blocking"
33
version = "0.2.0"
44
edition = "2021"
55
publish = false

0 commit comments

Comments
 (0)