From 7773c266d108463202bb4bc271dedfbc0b80673a Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 11 May 2024 11:18:51 +0300 Subject: [PATCH] Test electrs with latest bitcoind --- Cargo.lock | 6 ++---- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9fd1913..543f149 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -116,8 +116,7 @@ dependencies = [ [[package]] name = "bitcoincore-rpc" version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eb70725a621848c83b3809913d5314c0d20ca84877d99dd909504b564edab00" +source = "git+https://github.com/romanz/rust-bitcoincore-rpc?rev=e03cd640bfe4f004bb415b9122aab0617dd942a3#e03cd640bfe4f004bb415b9122aab0617dd942a3" dependencies = [ "bitcoincore-rpc-json", "jsonrpc", @@ -129,8 +128,7 @@ dependencies = [ [[package]] name = "bitcoincore-rpc-json" version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "856ffbee2e492c23bca715d72ea34aae80d58400f2bda26a82015d6bc2ec3662" +source = "git+https://github.com/romanz/rust-bitcoincore-rpc?rev=e03cd640bfe4f004bb415b9122aab0617dd942a3#e03cd640bfe4f004bb415b9122aab0617dd942a3" dependencies = [ "bitcoin", "serde", diff --git a/Cargo.toml b/Cargo.toml index 69c24ec..2d3bcf5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ spec = "internal/config_specification.toml" anyhow = "1.0" bitcoin = { version = "0.31.2", features = ["serde", "rand-std"] } bitcoin_slices = { version = "0.7", features = ["bitcoin", "sha2"] } -bitcoincore-rpc = { version = "0.18" } +bitcoincore-rpc = { git = "https://github.com/romanz/rust-bitcoincore-rpc", rev = "e03cd640bfe4f004bb415b9122aab0617dd942a3" } configure_me = "0.4" crossbeam-channel = "0.5" dirs-next = "2.0"