From 9924c105c404aa8b26763dc4c8da1506cd7ffdc5 Mon Sep 17 00:00:00 2001 From: Roman <51091564+jeanpierreroma@users.noreply.github.com> Date: Sun, 23 Aug 2026 01:06:32 +0300 Subject: [PATCH 1/3] chore: bump rust-dashcore to the merged sync fixes, minus the sweep-event chain MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Six merged dash-spv fixes for stalled and slow sync have been sitting in `dev` unreachable from the app, because the pin does not follow `dev` — it is moved onto side branches cut for one fix at a time. The last bump to a `dev` revision was #4394 on 08-13; #4455 on 08-22 moved it to `a062ccb9`, a cherry-pick of the mnemonic fix on top of an older base. What that leaves out, and what this brings in: | | | |---|---| | #964 | extend the CFHeaders queue from the tick — the queue was never re-extended when block-header storage advanced without an event, and filter sync stopped for good while headers and ChainLocks carried on | | #960 | promote finished header segments from the tick, not only on a message | | #955 | resume on the invariant `start_download` asserts | | #947 | recover masternode sync from a rejected QRInfo | | #946 | release clean storage segments below the committed height during long scans | | #866 | rescan committed filter ranges for newly derived scripts | Plus #945, #928, #963, #965, #967, #970, and #980 — the multilingual BIP-39 fix the current pin carries, so nothing regresses there. **Why a curated branch rather than `dev` HEAD.** `dev` also contains #961, which adds `WalletEvent::TransactionsSwept`, and #962/#966/#969 on top of it. That variant makes four `match` sites in `rs-platform-wallet` non-exhaustive, so pinning `dev` does not compile here — handling it is the substance of #4406 and is not something this bump should duplicate. The branch is `dev` with that chain left out: base `55afccfc` (#945) plus nine cherry-picks, every one applying without conflict. The exclusion has a cost worth stating: #961 stops a never-broadcast transaction from crediting money that does not exist, so a wallet can still read a balance that is too high in that case, and #966/#969 remove quadratic work from the sweep walk. Those arrive with #4406. This trades that for six stall fixes that are blocking users today. Ref: dashpay/rust-dashcore branch `chore/sync-fixes-without-swept`. --- Cargo.lock | 46 +++++++++++++++++++++++----------------------- Cargo.toml | 16 ++++++++-------- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 92026cb5b5d..79f7c37fdea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1229,7 +1229,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -1662,7 +1662,7 @@ dependencies = [ [[package]] name = "dash-network" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" dependencies = [ "bincode", "bincode_derive", @@ -1673,7 +1673,7 @@ dependencies = [ [[package]] name = "dash-network-seeds" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" dependencies = [ "dash-network", ] @@ -1768,7 +1768,7 @@ dependencies = [ [[package]] name = "dash-spv" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" dependencies = [ "async-trait", "chrono", @@ -1797,7 +1797,7 @@ dependencies = [ [[package]] name = "dashcore" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" dependencies = [ "anyhow", "base64-compat", @@ -1823,12 +1823,12 @@ dependencies = [ [[package]] name = "dashcore-private" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" [[package]] name = "dashcore-rpc" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" dependencies = [ "dashcore-rpc-json", "hex", @@ -1841,7 +1841,7 @@ dependencies = [ [[package]] name = "dashcore-rpc-json" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" dependencies = [ "bincode", "dashcore", @@ -1856,7 +1856,7 @@ dependencies = [ [[package]] name = "dashcore_hashes" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" dependencies = [ "bincode", "dashcore-private", @@ -2493,7 +2493,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -2554,7 +2554,7 @@ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78" dependencies = [ "cfg-if", "rustix 1.1.4", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -2923,7 +2923,7 @@ dependencies = [ [[package]] name = "git-state" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" [[package]] name = "glob" @@ -3858,7 +3858,7 @@ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ "hermit-abi", "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -4114,7 +4114,7 @@ dependencies = [ [[package]] name = "key-wallet" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" dependencies = [ "aes", "async-trait", @@ -4143,7 +4143,7 @@ dependencies = [ [[package]] name = "key-wallet-ffi" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" dependencies = [ "cbindgen 0.29.4", "dash-network", @@ -4159,7 +4159,7 @@ dependencies = [ [[package]] name = "key-wallet-manager" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=a97b32c617c8b1fef5185bb806500b66faf8e8c4#a97b32c617c8b1fef5185bb806500b66faf8e8c4" +source = "git+https://github.com/dashpay/rust-dashcore?rev=1322ef7252fe00cbe941a574c78fe94d755c27cd#1322ef7252fe00cbe941a574c78fe94d755c27cd" dependencies = [ "async-trait", "bincode", @@ -4670,7 +4670,7 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.59.0", ] [[package]] @@ -5770,7 +5770,7 @@ dependencies = [ "once_cell", "socket2 0.5.10", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -6578,7 +6578,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys 0.4.15", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -6591,7 +6591,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys 0.12.1", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -6650,7 +6650,7 @@ dependencies = [ "security-framework", "security-framework-sys", "webpki-root-certs", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -7510,7 +7510,7 @@ dependencies = [ "getrandom 0.4.2", "once_cell", "rustix 1.1.4", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -8959,7 +8959,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 23dcd8d051c..f5186f61211 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,14 +53,14 @@ members = [ ] [workspace.dependencies] -dashcore = { git = "https://github.com/dashpay/rust-dashcore", rev = "a97b32c617c8b1fef5185bb806500b66faf8e8c4" } -dash-network-seeds = { git = "https://github.com/dashpay/rust-dashcore", rev = "a97b32c617c8b1fef5185bb806500b66faf8e8c4" } -dash-spv = { git = "https://github.com/dashpay/rust-dashcore", rev = "a97b32c617c8b1fef5185bb806500b66faf8e8c4" } -key-wallet = { git = "https://github.com/dashpay/rust-dashcore", rev = "a97b32c617c8b1fef5185bb806500b66faf8e8c4" } -key-wallet-ffi = { git = "https://github.com/dashpay/rust-dashcore", rev = "a97b32c617c8b1fef5185bb806500b66faf8e8c4" } -key-wallet-manager = { git = "https://github.com/dashpay/rust-dashcore", rev = "a97b32c617c8b1fef5185bb806500b66faf8e8c4" } -dash-network = { git = "https://github.com/dashpay/rust-dashcore", rev = "a97b32c617c8b1fef5185bb806500b66faf8e8c4" } -dashcore-rpc = { git = "https://github.com/dashpay/rust-dashcore", rev = "a97b32c617c8b1fef5185bb806500b66faf8e8c4" } +dashcore = { git = "https://github.com/dashpay/rust-dashcore", rev = "1322ef7252fe00cbe941a574c78fe94d755c27cd" } +dash-network-seeds = { git = "https://github.com/dashpay/rust-dashcore", rev = "1322ef7252fe00cbe941a574c78fe94d755c27cd" } +dash-spv = { git = "https://github.com/dashpay/rust-dashcore", rev = "1322ef7252fe00cbe941a574c78fe94d755c27cd" } +key-wallet = { git = "https://github.com/dashpay/rust-dashcore", rev = "1322ef7252fe00cbe941a574c78fe94d755c27cd" } +key-wallet-ffi = { git = "https://github.com/dashpay/rust-dashcore", rev = "1322ef7252fe00cbe941a574c78fe94d755c27cd" } +key-wallet-manager = { git = "https://github.com/dashpay/rust-dashcore", rev = "1322ef7252fe00cbe941a574c78fe94d755c27cd" } +dash-network = { git = "https://github.com/dashpay/rust-dashcore", rev = "1322ef7252fe00cbe941a574c78fe94d755c27cd" } +dashcore-rpc = { git = "https://github.com/dashpay/rust-dashcore", rev = "1322ef7252fe00cbe941a574c78fe94d755c27cd" } tokio-metrics = "0.5" From 33d7d050b32ea18d3e6248ae5aa144ed9c23ad26 Mon Sep 17 00:00:00 2001 From: Roman <51091564+jeanpierreroma@users.noreply.github.com> Date: Tue, 25 Aug 2026 12:13:06 +0300 Subject: [PATCH 2/3] chore: drop #866 from the pinned branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per the decision on the blocker: the pinned branch is re-cut without #866's `rescan_committed_range`. Two reasons, and the second is the one that decides it. The Codex finding stands — the sweep accumulates every match from the birth height into one `BTreeMap` and queues them together, so an eclipsing compact-filter peer can turn a full-history rescan into a chain-length allocation followed by millions of block requests, and nothing upstream bounds it yet. More decisive is the honest case. On a real long-history CoinJoined restore the #846 backward sweep ran 191 times, reached a 2.9 GB footprint, and was killed by jetsam before finishing; the coalescing fix for that is dashpay/rust-dashcore#974, which is not merged. Shipping #866 without #974 would trade a mid-sync stall for a restore that kills the app — and long-history migrated wallets are exactly this release's audience. What the pin still carries is the point of this PR: #964, #960, #955, #947 and #946, the six sync-stall fixes, plus #945, #928, #963, #965, #967, #970 and #980. Dropping #866 restores the status quo of the previous pin rather than introducing a regression — #846's mid-sync invisibility was never fixed in what shipped — and the migrated-wallet heal (#4377) does a full rescan, so it does not lean on this sweep. #866 and #974 come back together next cycle, with a bounded drain for the accumulation finding. Branch: dashpay/rust-dashcore@chore/sync-fixes-without-swept, re-cut at 33030acf (base #945 plus eight cherry-picks, #866 omitted). From b64f496c4d24850a7fb70fa5d53d4a85f3755e6e Mon Sep 17 00:00:00 2001 From: Roman <51091564+jeanpierreroma@users.noreply.github.com> Date: Tue, 25 Aug 2026 13:38:18 +0300 Subject: [PATCH 3/3] chore: carry the current mainnet seed snapshot into the pinned branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The repin was rolling the bootstrap pool back. `a97b32c6` — the revision `v4.2-dev` pins today — carries the 2026-08-19 probe at tip height 2,524,354; the curated branch stopped at the 2026-08-17 one at 2,523,213, losing three endpoints including the evonodes 5.199.166.45 and 65.109.84.202 that the newer probe recorded as reachable with valid Platform TLS. `dash-network-seeds` embeds this file with `include_str!`, so that is a live regression in the shipped seed list, not a metadata detail. My check for "the current pin loses nothing" compared commit subjects, and both refreshes are titled `chore(seeds): refresh mainnet seed list`, so #970 looked like the same change. It is not: #970 is a 36/34-line refresh that went into `dev`, while `a97b32c6` is a separate 204/153-line probe that only ever existed on the side branch. Matching on subject was too weak a test for a generated data file. The branch now cherry-picks `a97b32c6` after the sync fixes, so `mainnet.txt` is byte-identical to what the current pin ships. Re-verified: 560 dash-spv tests, 13 dash-network-seeds tests, and `cargo check --workspace` clean at the new revision. Branch: dashpay/rust-dashcore@chore/sync-fixes-without-swept at 3d13d983. --- Cargo.lock | 46 +++++++++++++++++++++++----------------------- Cargo.toml | 16 ++++++++-------- 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6843e65190b..8deb59fae54 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1229,7 +1229,7 @@ version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -1662,7 +1662,7 @@ dependencies = [ [[package]] name = "dash-network" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" dependencies = [ "bincode", "bincode_derive", @@ -1673,7 +1673,7 @@ dependencies = [ [[package]] name = "dash-network-seeds" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" dependencies = [ "dash-network", ] @@ -1768,7 +1768,7 @@ dependencies = [ [[package]] name = "dash-spv" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" dependencies = [ "async-trait", "chrono", @@ -1797,7 +1797,7 @@ dependencies = [ [[package]] name = "dashcore" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" dependencies = [ "anyhow", "base64-compat", @@ -1823,12 +1823,12 @@ dependencies = [ [[package]] name = "dashcore-private" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" [[package]] name = "dashcore-rpc" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" dependencies = [ "dashcore-rpc-json", "hex", @@ -1841,7 +1841,7 @@ dependencies = [ [[package]] name = "dashcore-rpc-json" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" dependencies = [ "bincode", "dashcore", @@ -1856,7 +1856,7 @@ dependencies = [ [[package]] name = "dashcore_hashes" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" dependencies = [ "bincode", "dashcore-private", @@ -2493,7 +2493,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -2554,7 +2554,7 @@ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78" dependencies = [ "cfg-if", "rustix 1.1.4", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -2923,7 +2923,7 @@ dependencies = [ [[package]] name = "git-state" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" [[package]] name = "glob" @@ -3879,7 +3879,7 @@ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ "hermit-abi", "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -4135,7 +4135,7 @@ dependencies = [ [[package]] name = "key-wallet" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" dependencies = [ "aes", "async-trait", @@ -4164,7 +4164,7 @@ dependencies = [ [[package]] name = "key-wallet-ffi" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" dependencies = [ "cbindgen 0.29.4", "dash-network", @@ -4180,7 +4180,7 @@ dependencies = [ [[package]] name = "key-wallet-manager" version = "0.45.0" -source = "git+https://github.com/dashpay/rust-dashcore?rev=33030acfd30b1d4370374924cd3869c5af1df06a#33030acfd30b1d4370374924cd3869c5af1df06a" +source = "git+https://github.com/dashpay/rust-dashcore?rev=3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a#3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" dependencies = [ "async-trait", "bincode", @@ -4691,7 +4691,7 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.61.2", + "windows-sys 0.59.0", ] [[package]] @@ -5791,7 +5791,7 @@ dependencies = [ "once_cell", "socket2 0.5.10", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -6599,7 +6599,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys 0.4.15", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -6612,7 +6612,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys 0.12.1", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -6671,7 +6671,7 @@ dependencies = [ "security-framework", "security-framework-sys", "webpki-root-certs", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -7531,7 +7531,7 @@ dependencies = [ "getrandom 0.4.2", "once_cell", "rustix 1.1.4", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -8980,7 +8980,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 3c7880e906f..4183d2ecb3a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,14 +53,14 @@ members = [ ] [workspace.dependencies] -dashcore = { git = "https://github.com/dashpay/rust-dashcore", rev = "33030acfd30b1d4370374924cd3869c5af1df06a" } -dash-network-seeds = { git = "https://github.com/dashpay/rust-dashcore", rev = "33030acfd30b1d4370374924cd3869c5af1df06a" } -dash-spv = { git = "https://github.com/dashpay/rust-dashcore", rev = "33030acfd30b1d4370374924cd3869c5af1df06a" } -key-wallet = { git = "https://github.com/dashpay/rust-dashcore", rev = "33030acfd30b1d4370374924cd3869c5af1df06a" } -key-wallet-ffi = { git = "https://github.com/dashpay/rust-dashcore", rev = "33030acfd30b1d4370374924cd3869c5af1df06a" } -key-wallet-manager = { git = "https://github.com/dashpay/rust-dashcore", rev = "33030acfd30b1d4370374924cd3869c5af1df06a" } -dash-network = { git = "https://github.com/dashpay/rust-dashcore", rev = "33030acfd30b1d4370374924cd3869c5af1df06a" } -dashcore-rpc = { git = "https://github.com/dashpay/rust-dashcore", rev = "33030acfd30b1d4370374924cd3869c5af1df06a" } +dashcore = { git = "https://github.com/dashpay/rust-dashcore", rev = "3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" } +dash-network-seeds = { git = "https://github.com/dashpay/rust-dashcore", rev = "3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" } +dash-spv = { git = "https://github.com/dashpay/rust-dashcore", rev = "3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" } +key-wallet = { git = "https://github.com/dashpay/rust-dashcore", rev = "3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" } +key-wallet-ffi = { git = "https://github.com/dashpay/rust-dashcore", rev = "3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" } +key-wallet-manager = { git = "https://github.com/dashpay/rust-dashcore", rev = "3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" } +dash-network = { git = "https://github.com/dashpay/rust-dashcore", rev = "3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" } +dashcore-rpc = { git = "https://github.com/dashpay/rust-dashcore", rev = "3d13d9838c80fb5e67cf1f62cf5f3f4477bd5b9a" } tokio-metrics = "0.5"