Skip to content

Commit

Permalink
Merge branch 'release/0.29' into docs/allow_shrinking
Browse files Browse the repository at this point in the history
  • Loading branch information
notmandatory committed Mar 4, 2024
2 parents 0c3005a + 2a8c8c2 commit 7b19cbe
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
run: rustup update
- name: Pin dependencies for MSRV
if: matrix.rust.version == '1.63.0'
run: cargo update -p regex --precise "1.7.3"
run: |
cargo update -p regex --precise "1.7.3"
cargo update -p home --precise "0.5.5"
- name: Build
run: cargo build --features ${{ matrix.features }} --no-default-features
- name: Clippy
Expand Down Expand Up @@ -212,6 +214,8 @@ jobs:
run: rustup update
- name: Pin dependencies for MSRV
if: matrix.rust.version == '1.63.0'
run: cargo update -p regex --precise "1.7.3"
run: |
cargo update -p regex --precise "1.7.3"
cargo update -p home --precise "0.5.5"
- name: Test
run: cargo test --features test-hardware-signer
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,4 +210,5 @@ To build with the MSRV you will need to pin dependencies as follows:

```shell
cargo update -p regex --precise "1.7.3"
cargo update -p home --precise "0.5.5"
```
1 change: 1 addition & 0 deletions clippy.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
msrv="1.63.0"
3 changes: 1 addition & 2 deletions src/wallet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3741,8 +3741,7 @@ pub(crate) mod test {
let addr2_output = tx
.output
.into_iter()
.filter(|o| o.script_pubkey.eq(&addr2.script_pubkey()))
.next();
.find(|o| o.script_pubkey.eq(&addr2.script_pubkey()));
assert!(addr2_output.is_some());
assert_eq!(addr2_output.unwrap().value, 1_850);
}
Expand Down

0 comments on commit 7b19cbe

Please sign in to comment.