Skip to content

Commit 5f39b51

Browse files
committedAug 10, 2024
Testnet4, block fetcher, wallet updates and more ...
* Testnet4 support * Update bdk dependency to latest version * New faster block fetcher to process blocks in a thread pool * Bug fixes in wallet coin selection and signing. * Changes in stored/exported wallet format * Add Rpc commands getwalletinfo, exportwallet, importwallet * Rename chain commands test => testnet for consistency * Update spacedb dependency to version 0.0.2
1 parent 1d1d02c commit 5f39b51

27 files changed

+4057
-1933
lines changed
 

‎Cargo.lock

+530-143
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎node/Cargo.toml

+4-5
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ path = "src/bin/spaced.rs"
1616
path = "src/lib.rs"
1717

1818
[dependencies]
19-
bdk_bitcoind_rpc = "0.10.0"
20-
bdk_chain = "0.14.0"
21-
bdk = "1.0.0-alpha.11"
2219
wallet = { path = "../wallet" }
2320
tokio = { version = "1.37.0", features = ["signal"] }
2421
ctrlc = "3.4.4"
@@ -34,6 +31,8 @@ env_logger = "0.11.3"
3431
serde_json = "1.0.116"
3532
bincode = {version = "2.0.0-rc.3", features = ["serde", "derive"]}
3633
protocol = { path = "../protocol", version = "*", features = ["std"]}
37-
spacedb = { git = "https://github.com/spacesprotocol/spacedb", tag = "0.0.1" }
34+
spacedb = { git = "https://github.com/spacesprotocol/spacedb", tag = "0.0.2" }
3835
base64 = "0.22.1"
39-
futures = "0.3.30"
36+
futures = "0.3.30"
37+
reqwest = { version = "0.12.5", features = ["json", "blocking"] }
38+
threadpool = "1.8.1"

0 commit comments

Comments
 (0)