Skip to content

Commit 371e712

Browse files
committed
Bump transaction sync dev dependencies
1 parent d9863fb commit 371e712

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

lightning-transaction-sync/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ lightning = { version = "0.3.0", path = "../lightning", default-features = false
4545
tokio = { version = "1.35.0", features = ["macros"] }
4646

4747
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]
48-
electrsd = { version = "0.36.0", default-features = false, features = ["legacy"] }
49-
corepc-node = { version = "0.10.0", default-features = false, features = ["28_0"] }
48+
electrsd = { version = "0.38", default-features = false, features = ["legacy"] }
49+
bitcoind = { version = "0.38", default-features = false, features = ["28_1"] }
5050

5151
[lints.rust.unexpected_cfgs]
5252
level = "forbid"

lightning-transaction-sync/tests/integration_tests.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ use bitcoin::constants::genesis_block;
1818
use bitcoin::network::Network;
1919
use bitcoin::{Amount, BlockHash, Txid};
2020

21-
use electrsd::corepc_node::Node as BitcoinD;
22-
use electrsd::{corepc_node, ElectrsD};
21+
use bitcoind::BitcoinD;
22+
use electrsd::ElectrsD;
2323

2424
use std::collections::{HashMap, HashSet};
2525
use std::env;
@@ -28,10 +28,10 @@ use std::time::Duration;
2828

2929
pub fn setup_bitcoind_and_electrsd() -> (BitcoinD, ElectrsD) {
3030
let bitcoind_exe =
31-
env::var("BITCOIND_EXE").ok().or_else(|| corepc_node::downloaded_exe_path().ok()).expect(
31+
env::var("BITCOIND_EXE").ok().or_else(|| bitcoind::downloaded_exe_path().ok()).expect(
3232
"you need to provide an env var BITCOIND_EXE or specify a bitcoind version feature",
3333
);
34-
let mut bitcoind_conf = corepc_node::Conf::default();
34+
let mut bitcoind_conf = bitcoind::Conf::default();
3535
bitcoind_conf.network = "regtest";
3636
let bitcoind = BitcoinD::with_conf(bitcoind_exe, &bitcoind_conf).unwrap();
3737

0 commit comments

Comments
 (0)