Commit ec6e59b
committed
Merge bitcoindevkit#266: Bump
af792ea Bump `bitcoin` dependency requirement to v0.32.6 to reflect used API (Elias Rohrer)
Pull request description:
### Description
Starting with commit `f6fd9853e`, `bdk_wallet` makes use of `bitcoin::key::TweakedKeyPair::to_keypair` which was introduced with v0.32.6. Here, we adjust the minimum API requirement in `Cargo.toml`, as BDK 2.0.0 builds could otherwise fail with:
```
error[E0599]: no method named `to_keypair` found for struct `TweakedKeypair` in the current scope
--> /home/tnull/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bdk_wallet-2.0.0/src/wallet/signer.rs:580:14
|
578 | None => keypair
| _________________-
579 | | .tap_tweak(secp, psbt_input.tap_merkle_root)
580 | | .to_keypair(),
| | -^^^^^^^^^^ method not found in `TweakedKeypair`
| |_____________|
|
For more information about this error, try `rustc --explain E0599`.
```
ACKs for top commit:
ValuedMammal:
reACK af792ea
Tree-SHA512: 549334a8959dd985045d432003edc6f7ac3525916bcd1dcc8544aa39b25a68f1caa175f9ffbc82c37a4155f231179fb4eadce9cfab284eb38e74fd2fa007d6c6bitcoin dependency requirement to v0.32.6 to reflect used API1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
0 commit comments