Skip to content

Commit 3b040a7

Browse files
committed
Merge #1448: bump(deps): upgrade rust bitcoin to 0.32.0, miniscript to 0.12.0 and others
1120081 chore(wallet): rm dup code (志宇) 2a45640 deps(bdk): bump `bitcoin` to `0.32.0`, miniscript to `12.0.0` (Leonardo Lima) Pull request description: fixes #1422 <!-- You can erase any parts of this template not applicable to your Pull Request. --> ### Description This PR focuses on upgrading the `rust-bitcoin` and `miniscript` versions, to `0.32.0` and `0.12.0`, respectively. It also bumps the versions of other BDK ecosystem crates that also rely on both `rust-bitcoin` and `miniscript`, being: - electrum-client bitcoindevkit/rust-electrum-client#133 - esplora-client bitcoindevkit/rust-esplora-client#85 - hwi bitcoindevkit/rust-hwi#99 <ins>I structured the PR in multiple commits, with closed scope, being one for each BDK crate being upgraded, and one for each kind of fix and upgrade required, it seems like a lot of commits (**that should be squashed before merging**), but I think it'll make it easier during review phase.</ins> In summary I can already mention some of the main changes: - using `compute_txid()` instead of deprecated `txid()` - using `minimal_non_dust()` instead of `dust_value()` - using the renamed `signature` and `sighash_type` fields - using proper `sighash::P2wpkhError`, `sighash::TaprootError` instead of older `sighash::Error` - conversion from `Network` to new expected `NetworkKind` #1465 - conversion from the new `Weight` type to current expected `usize` #1466 - using `.into()` to convert from AbsLockTime and `RelLockTime` to `absolute::LockTime` and `relative::LockTime` - using Message::from_digest() instead of relying on deprecated `ThirtyTwoByteHash` trait. - updating the miniscript policy and dsl to proper expect and handle new `Threshold` type, instead of the previous two parameters. <!-- Describe the purpose of this PR, what's being adding and/or fixed --> ### Notes to the reviewers <ins>Again, I structured the PR in multiple commits, with closed scope, being one for each BDK crate being upgraded, and one for each kind of fix and upgrade required, it seems like a lot of commits (**that should be squashed before merging**), but I think it'll make it easier during review phase.</ins> It should definitely be carefully reviewed, especially the last commits for the wallet crate scope, the ones with the semantic `fix(wallet)`. I would also appreciate if @tcharding reviewed it, as he gave a try in the past (#1400 ), and I relied on some of it for the policy part of it, other rust-bitcoin maintainers reviews are a definitely welcome 😁 <!-- In this section you can include notes directed to the reviewers, like explaining why some parts of the PR were done in a specific way --> ### Changelog notice > // TODO(@oleonardolima): Do another pass and double check the changes - Use `compute_txid()` instead of deprecated `txid()` - Use `minimal_non_dust()` instead of `dust_value()` - Use `signature` and `sighash_type` fields, instead of previous `sig` and `hash_type` - Use `sighash::P2wpkhError`, and `sighash::TaprootError` instead of older `sighash::Error` - Converts from `Network` to `NetworkKind`, where expected - Converts from `Weight` type to current used `usize` - Use `.into()` to convert from `AbsLockTime` and `RelLockTime` to `absolute::LockTime` and `relative::LockTime` - Remove use of deprecated `ThirtyTwoByteHash` trait, use `Message::from_digest()` - Update the miniscript policy and dsl macros to proper expect and handle new `Threshold` type, instead of the previous two parameters. <!-- Notice the release manager should include in the release tag message changelog --> <!-- See https://keepachangelog.com/en/1.0.0/ for examples --> ### Checklists #### All Submissions: * [x] I've signed all my commits * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [x] I ran `cargo fmt` and `cargo clippy` before committing #### New Features: * [ ] I've added tests for the new feature * [ ] I've added docs for the new feature #### Bugfixes: * [ ] This pull request breaks the existing API * [ ] I've added tests to reproduce the issue which are now passing * [ ] I'm linking the issue being fixed by this PR ACKs for top commit: notmandatory: ACK 1120081 Tree-SHA512: ba1ab64603b41014d3f0866d846167f77d31959ca6f1d9c3181d5e543964f5d772e05651d63935ba7bbffeba41a66868d27de4c32129739b9ca50f3bbaf9f2a1
2 parents 473ef97 + 1120081 commit 3b040a7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+430
-305
lines changed

.github/workflows/cont_integration.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ jobs:
5858
- name: Check bdk_chain
5959
working-directory: ./crates/chain
6060
# TODO "--target thumbv6m-none-eabi" should work but currently does not
61-
run: cargo check --no-default-features --features bitcoin/no-std,miniscript/no-std,hashbrown
61+
run: cargo check --no-default-features --features miniscript/no-std,hashbrown
6262
- name: Check bdk wallet
6363
working-directory: ./crates/wallet
6464
# TODO "--target thumbv6m-none-eabi" should work but currently does not
65-
run: cargo check --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown
65+
run: cargo check --no-default-features --features miniscript/no-std,bdk_chain/hashbrown
6666
- name: Check esplora
6767
working-directory: ./crates/esplora
6868
# TODO "--target thumbv6m-none-eabi" should work but currently does not
69-
run: cargo check --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown
69+
run: cargo check --no-default-features --features miniscript/no-std,bdk_chain/hashbrown
7070

7171
check-wasm:
7272
name: Check WASM
@@ -92,10 +92,10 @@ jobs:
9292
uses: Swatinem/[email protected]
9393
- name: Check bdk wallet
9494
working-directory: ./crates/wallet
95-
run: cargo check --target wasm32-unknown-unknown --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown,dev-getrandom-wasm
95+
run: cargo check --target wasm32-unknown-unknown --no-default-features --features miniscript/no-std,bdk_chain/hashbrown,dev-getrandom-wasm
9696
- name: Check esplora
9797
working-directory: ./crates/esplora
98-
run: cargo check --target wasm32-unknown-unknown --no-default-features --features bitcoin/no-std,miniscript/no-std,bdk_chain/hashbrown,async
98+
run: cargo check --target wasm32-unknown-unknown --no-default-features --features miniscript/no-std,bdk_chain/hashbrown,async
9999

100100
fmt:
101101
name: Rust fmt

crates/bitcoind_rpc/Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ readme = "README.md"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
# For no-std, remember to enable the bitcoin/no-std feature
17-
bitcoin = { version = "0.31", default-features = false }
18-
bitcoincore-rpc = { version = "0.18" }
16+
bitcoin = { version = "0.32.0", default-features = false }
17+
bitcoincore-rpc = { version = "0.19.0" }
1918
bdk_chain = { path = "../chain", version = "0.15", default-features = false }
2019

2120
[dev-dependencies]

crates/bitcoind_rpc/tests/test_emitter.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ fn test_into_tx_graph() -> anyhow::Result<()> {
197197
.graph
198198
.txs
199199
.iter()
200-
.map(|tx| tx.txid())
200+
.map(|tx| tx.compute_txid())
201201
.collect::<BTreeSet<Txid>>(),
202202
exp_txids,
203203
"changeset should have the 3 mempool transactions",
@@ -440,7 +440,7 @@ fn mempool_avoids_re_emission() -> anyhow::Result<()> {
440440
let emitted_txids = emitter
441441
.mempool()?
442442
.into_iter()
443-
.map(|(tx, _)| tx.txid())
443+
.map(|(tx, _)| tx.compute_txid())
444444
.collect::<BTreeSet<Txid>>();
445445
assert_eq!(
446446
emitted_txids, exp_txids,
@@ -509,7 +509,7 @@ fn mempool_re_emits_if_tx_introduction_height_not_reached() -> anyhow::Result<()
509509
emitter
510510
.mempool()?
511511
.into_iter()
512-
.map(|(tx, _)| tx.txid())
512+
.map(|(tx, _)| tx.compute_txid())
513513
.collect::<BTreeSet<_>>(),
514514
tx_introductions.iter().map(|&(_, txid)| txid).collect(),
515515
"first mempool emission should include all txs",
@@ -518,7 +518,7 @@ fn mempool_re_emits_if_tx_introduction_height_not_reached() -> anyhow::Result<()
518518
emitter
519519
.mempool()?
520520
.into_iter()
521-
.map(|(tx, _)| tx.txid())
521+
.map(|(tx, _)| tx.compute_txid())
522522
.collect::<BTreeSet<_>>(),
523523
tx_introductions.iter().map(|&(_, txid)| txid).collect(),
524524
"second mempool emission should still include all txs",
@@ -538,7 +538,7 @@ fn mempool_re_emits_if_tx_introduction_height_not_reached() -> anyhow::Result<()
538538
let emitted_txids = emitter
539539
.mempool()?
540540
.into_iter()
541-
.map(|(tx, _)| tx.txid())
541+
.map(|(tx, _)| tx.compute_txid())
542542
.collect::<BTreeSet<_>>();
543543
assert_eq!(
544544
emitted_txids, exp_txids,
@@ -596,7 +596,7 @@ fn mempool_during_reorg() -> anyhow::Result<()> {
596596
emitter
597597
.mempool()?
598598
.into_iter()
599-
.map(|(tx, _)| tx.txid())
599+
.map(|(tx, _)| tx.compute_txid())
600600
.collect::<BTreeSet<_>>(),
601601
env.rpc_client()
602602
.get_raw_mempool()?
@@ -633,7 +633,7 @@ fn mempool_during_reorg() -> anyhow::Result<()> {
633633
let mempool = emitter
634634
.mempool()?
635635
.into_iter()
636-
.map(|(tx, _)| tx.txid())
636+
.map(|(tx, _)| tx.compute_txid())
637637
.collect::<BTreeSet<_>>();
638638
let exp_mempool = tx_introductions
639639
.iter()
@@ -648,7 +648,7 @@ fn mempool_during_reorg() -> anyhow::Result<()> {
648648
let mempool = emitter
649649
.mempool()?
650650
.into_iter()
651-
.map(|(tx, _)| tx.txid())
651+
.map(|(tx, _)| tx.compute_txid())
652652
.collect::<BTreeSet<_>>();
653653
let exp_mempool = tx_introductions
654654
.iter()

crates/chain/Cargo.toml

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ readme = "README.md"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
# For no-std, remember to enable the bitcoin/no-std feature
17-
bitcoin = { version = "0.31.0", default-features = false }
16+
bitcoin = { version = "0.32.0", default-features = false }
1817
serde_crate = { package = "serde", version = "1", optional = true, features = ["derive", "rc"] }
1918

2019
# Use hashbrown as a feature flag to have HashSet and HashMap from it.
2120
hashbrown = { version = "0.9.1", optional = true, features = ["serde"] }
22-
miniscript = { version = "11.0.0", optional = true, default-features = false }
21+
miniscript = { version = "12.0.0", optional = true, default-features = false }
2322

2423
[dev-dependencies]
2524
rand = "0.8"

crates/chain/src/descriptor_ext.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl DescriptorExt for Descriptor<DescriptorPublicKey> {
3131
self.at_derivation_index(0)
3232
.expect("descriptor can't have hardened derivation")
3333
.script_pubkey()
34-
.dust_value()
34+
.minimal_non_dust()
3535
.to_sat()
3636
}
3737

crates/chain/src/indexed_tx_graph.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ where
143143
let mut graph = tx_graph::ChangeSet::default();
144144
for (tx, anchors) in txs {
145145
if self.index.is_tx_relevant(tx) {
146-
let txid = tx.txid();
146+
let txid = tx.compute_txid();
147147
graph.append(self.graph.insert_tx(tx.clone()));
148148
for anchor in anchors {
149149
graph.append(self.graph.insert_anchor(txid, anchor));
@@ -234,7 +234,7 @@ where
234234
for (tx_pos, tx) in block.txdata.iter().enumerate() {
235235
changeset.indexer.append(self.index.index_tx(tx));
236236
if self.index.is_tx_relevant(tx) {
237-
let txid = tx.txid();
237+
let txid = tx.compute_txid();
238238
let anchor = A::from_block_position(block, block_id, tx_pos);
239239
changeset.graph.append(self.graph.insert_tx(tx.clone()));
240240
changeset
@@ -261,7 +261,7 @@ where
261261
let mut graph = tx_graph::ChangeSet::default();
262262
for (tx_pos, tx) in block.txdata.iter().enumerate() {
263263
let anchor = A::from_block_position(&block, block_id, tx_pos);
264-
graph.append(self.graph.insert_anchor(tx.txid(), anchor));
264+
graph.append(self.graph.insert_anchor(tx.compute_txid(), anchor));
265265
graph.append(self.graph.insert_tx(tx.clone()));
266266
}
267267
let indexer = self.index_tx_graph_changeset(&graph);

crates/chain/src/keychain/txout_index.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ impl<K: Clone + Ord + Debug> Indexer for KeychainTxOutIndex<K> {
251251
fn index_tx(&mut self, tx: &bitcoin::Transaction) -> Self::ChangeSet {
252252
let mut changeset = super::ChangeSet::<K>::default();
253253
for (op, txout) in tx.output.iter().enumerate() {
254-
changeset.append(self.index_txout(OutPoint::new(tx.txid(), op as u32), txout));
254+
changeset.append(self.index_txout(OutPoint::new(tx.compute_txid(), op as u32), txout));
255255
}
256256
changeset
257257
}

crates/chain/src/spk_txout_index.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl<I: Clone + Ord> SpkTxOutIndex<I> {
8686
/// 2. When getting new data from the chain, you usually scan it before incorporating it into your chain state.
8787
pub fn scan(&mut self, tx: &Transaction) -> BTreeSet<I> {
8888
let mut scanned_indices = BTreeSet::new();
89-
let txid = tx.txid();
89+
let txid = tx.compute_txid();
9090
for (i, txout) in tx.output.iter().enumerate() {
9191
let op = OutPoint::new(txid, i as u32);
9292
if let Some(spk_i) = self.scan_txout(op, txout) {

crates/chain/src/tx_data_traits.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ use alloc::vec::Vec;
4343
/// let mut graph_a = TxGraph::<BlockId>::default();
4444
/// let _ = graph_a.insert_tx(tx.clone());
4545
/// graph_a.insert_anchor(
46-
/// tx.txid(),
46+
/// tx.compute_txid(),
4747
/// BlockId {
4848
/// height: 1,
4949
/// hash: Hash::hash("first".as_bytes()),
@@ -58,7 +58,7 @@ use alloc::vec::Vec;
5858
/// let mut graph_b = TxGraph::<ConfirmationHeightAnchor>::default();
5959
/// let _ = graph_b.insert_tx(tx.clone());
6060
/// graph_b.insert_anchor(
61-
/// tx.txid(),
61+
/// tx.compute_txid(),
6262
/// ConfirmationHeightAnchor {
6363
/// anchor_block: BlockId {
6464
/// height: 2,
@@ -76,7 +76,7 @@ use alloc::vec::Vec;
7676
/// let mut graph_c = TxGraph::<ConfirmationTimeHeightAnchor>::default();
7777
/// let _ = graph_c.insert_tx(tx.clone());
7878
/// graph_c.insert_anchor(
79-
/// tx.txid(),
79+
/// tx.compute_txid(),
8080
/// ConfirmationTimeHeightAnchor {
8181
/// anchor_block: BlockId {
8282
/// height: 2,

crates/chain/src/tx_graph.rs

+12-11
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ impl<A> TxGraph<A> {
445445
&'g self,
446446
tx: &'g Transaction,
447447
) -> impl Iterator<Item = (usize, Txid)> + '_ {
448-
let txid = tx.txid();
448+
let txid = tx.compute_txid();
449449
tx.input
450450
.iter()
451451
.enumerate()
@@ -516,9 +516,10 @@ impl<A: Clone + Ord> TxGraph<A> {
516516
pub fn insert_tx<T: Into<Arc<Transaction>>>(&mut self, tx: T) -> ChangeSet<A> {
517517
let tx = tx.into();
518518
let mut update = Self::default();
519-
update
520-
.txs
521-
.insert(tx.txid(), (TxNodeInternal::Whole(tx), BTreeSet::new(), 0));
519+
update.txs.insert(
520+
tx.compute_txid(),
521+
(TxNodeInternal::Whole(tx), BTreeSet::new(), 0),
522+
);
522523
self.apply_update(update)
523524
}
524525

@@ -533,7 +534,7 @@ impl<A: Clone + Ord> TxGraph<A> {
533534
) -> ChangeSet<A> {
534535
let mut changeset = ChangeSet::<A>::default();
535536
for (tx, seen_at) in txs {
536-
changeset.append(self.insert_seen_at(tx.txid(), seen_at));
537+
changeset.append(self.insert_seen_at(tx.compute_txid(), seen_at));
537538
changeset.append(self.insert_tx(tx));
538539
}
539540
changeset
@@ -642,7 +643,7 @@ impl<A: Clone + Ord> TxGraph<A> {
642643
pub fn apply_changeset(&mut self, changeset: ChangeSet<A>) {
643644
for wrapped_tx in changeset.txs {
644645
let tx = wrapped_tx.as_ref();
645-
let txid = tx.txid();
646+
let txid = tx.compute_txid();
646647

647648
tx.input
648649
.iter()
@@ -660,7 +661,7 @@ impl<A: Clone + Ord> TxGraph<A> {
660661
}
661662
Some((TxNodeInternal::Whole(tx), _, _)) => {
662663
debug_assert_eq!(
663-
tx.as_ref().txid(),
664+
tx.as_ref().compute_txid(),
664665
txid,
665666
"tx should produce txid that is same as key"
666667
);
@@ -825,7 +826,7 @@ impl<A: Anchor> TxGraph<A> {
825826
// resulting array will also include `tx`
826827
let unconfirmed_ancestor_txs =
827828
TxAncestors::new_include_root(self, tx.clone(), |_, ancestor_tx: Arc<Transaction>| {
828-
let tx_node = self.get_tx_node(ancestor_tx.as_ref().txid())?;
829+
let tx_node = self.get_tx_node(ancestor_tx.as_ref().compute_txid())?;
829830
// We're filtering the ancestors to keep only the unconfirmed ones (= no anchors in
830831
// the best chain)
831832
for block in tx_node.anchors {
@@ -843,7 +844,7 @@ impl<A: Anchor> TxGraph<A> {
843844
// and our unconf descendants' last seen.
844845
let unconfirmed_descendants_txs = TxDescendants::new_include_root(
845846
self,
846-
tx.as_ref().txid(),
847+
tx.as_ref().compute_txid(),
847848
|_, descendant_txid: Txid| {
848849
let tx_node = self.get_tx_node(descendant_txid)?;
849850
// We're filtering the ancestors to keep only the unconfirmed ones (= no anchors in
@@ -884,7 +885,7 @@ impl<A: Anchor> TxGraph<A> {
884885
return Ok(None);
885886
}
886887
if conflicting_tx.last_seen_unconfirmed == *last_seen
887-
&& conflicting_tx.as_ref().txid() > tx.as_ref().txid()
888+
&& conflicting_tx.as_ref().compute_txid() > tx.as_ref().compute_txid()
888889
{
889890
// Conflicting tx has priority if txid of conflicting tx > txid of original tx
890891
return Ok(None);
@@ -1255,7 +1256,7 @@ impl<A> ChangeSet<A> {
12551256
tx.output
12561257
.iter()
12571258
.enumerate()
1258-
.map(move |(vout, txout)| (OutPoint::new(tx.txid(), vout as _), txout))
1259+
.map(move |(vout, txout)| (OutPoint::new(tx.compute_txid(), vout as _), txout))
12591260
})
12601261
.chain(self.txouts.iter().map(|(op, txout)| (*op, txout)))
12611262
}

crates/chain/tests/common/tx_template.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,14 @@ pub fn init_graph<'a, A: Anchor + Clone + 'a>(
125125
.collect(),
126126
};
127127

128-
tx_ids.insert(tx_tmp.tx_name, tx.txid());
128+
tx_ids.insert(tx_tmp.tx_name, tx.compute_txid());
129129
spk_index.scan(&tx);
130130
let _ = graph.insert_tx(tx.clone());
131131
for anchor in tx_tmp.anchors.iter() {
132-
let _ = graph.insert_anchor(tx.txid(), anchor.clone());
132+
let _ = graph.insert_anchor(tx.compute_txid(), anchor.clone());
133133
}
134134
if let Some(seen_at) = tx_tmp.last_seen {
135-
let _ = graph.insert_seen_at(tx.txid(), seen_at);
135+
let _ = graph.insert_seen_at(tx.compute_txid(), seen_at);
136136
}
137137
}
138138
(graph, spk_index, tx_ids)

0 commit comments

Comments
 (0)