Skip to content

Commit

Permalink
fix MSRV issues
Browse files Browse the repository at this point in the history
  • Loading branch information
willowens14 committed Dec 12, 2023
1 parent 9ea62be commit 2de946d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,18 @@ jobs:
cargo update -p hashlink --precise 0.8.0
cargo update -p tempfile --precise 3.6.0
cargo update -p base64ct --precise 1.5.3
cargo update -p cc --precise 1.0.81
cargo update -p flate2 --precise 1.0.26
cargo update -p h2:0.3.21 --precise "0.3.20"
cargo update -p reqwest:0.11.20 --precise "0.11.18"
cargo update -p tokio:1.32.0 --precise 1.29.1
cargo update -p h2:0.3.21 --precise 0.3.20
cargo update -p reqwest:0.11.22 --precise 0.11.18
cargo update -p tokio:1.33.0 --precise 1.29.1
cargo update -p tokio-util:0.7.9 --precise 0.7.8
cargo update -p rustls --precise "0.20.8"
cargo update -p rustls --precise 0.20.8
cargo update -p byteorder --precise "1.4.3"
cargo update -p webpki --precise 0.22.2
cargo update -p cc --precise 1.0.81
cargo update -p os_str_bytes --precise 6.5.1
cargo update -p jobserver --precise 0.1.26
- name: Build
run: cargo build --no-default-features --features repl,${{ matrix.features }}
Expand Down
3 changes: 2 additions & 1 deletion src/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -491,8 +491,9 @@ where
if proposed_txin.previous_output == original_txin.previous_output {
proposed_psbtin.witness_utxo = original_psbtin.witness_utxo.clone();
proposed_psbtin.non_witness_utxo = original_psbtin.non_witness_utxo.clone();
}

original_inputs.next();
}
}
}

Expand Down

0 comments on commit 2de946d

Please sign in to comment.