Skip to content

Commit 674e3fc

Browse files
randomloginfebyeji
authored andcommitted
update kyoto version (#14)
1 parent 57a9c5b commit 674e3fc

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ lightning-dns-resolver = { git = "https://github.com/lightningdevkit/rust-lightn
5656
bdk_chain = { version = "0.23.0", default-features = false, features = ["std"] }
5757
bdk_esplora = { version = "0.22.0", default-features = false, features = ["async-https-rustls", "tokio"]}
5858
bdk_electrum = { version = "0.23.0", default-features = false, features = ["use-rustls-ring"]}
59-
bip157 = { version = "0.4.2", default-features = false }
59+
bip157 = { version = "0.5.0", default-features = false }
6060
bdk_wallet = { version = "2.3.0", default-features = false, features = ["std", "keys-bip39"]}
6161

6262
bitreq = { version = "0.3", default-features = false, features = ["async-https", "json-using-serde"] }

src/chain/cbf.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,6 @@ impl CbfChainSource {
432432
let _ = tx.send(sync_update);
433433
}
434434
},
435-
Event::Block(_) => {},
436435
Event::ChainUpdate(header_changes) => match header_changes {
437436
BlockHeaderChanges::Reorganized { accepted, reorganized } => {
438437
log_debug!(
@@ -1136,7 +1135,7 @@ impl CbfChainSource {
11361135
let tx_bytes = tx.encode();
11371136
let timeout_fut = tokio::time::timeout(
11381137
Duration::from_secs(self.sync_config.timeouts_config.tx_broadcast_timeout_secs),
1139-
requester.broadcast_tx(tx),
1138+
requester.submit_package(tx),
11401139
);
11411140
match timeout_fut.await {
11421141
Ok(res) => match res {

0 commit comments

Comments
 (0)