Skip to content

Commit

Permalink
Merge pull request #71 from zoedberg/fix_windows_ci
Browse files Browse the repository at this point in the history
fix CI
  • Loading branch information
dr-orlovsky authored Sep 11, 2024
2 parents 7487a1c + fcd50f4 commit f3ce1c3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ jobs:
matrix:
os: [ ubuntu-22.04, ubuntu-latest, macos-13, macos-latest, windows-2019, windows-latest ]
steps:
- uses: ilammy/setup-nasm@v1
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Platform ${{matrix.os}}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
matrix:
os: [ ubuntu-latest, macos-13, macos-latest, windows-latest ]
steps:
- uses: ilammy/setup-nasm@v1
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Test ${{matrix.os}}
Expand Down
4 changes: 2 additions & 2 deletions src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,8 @@ impl<L2: Layer2Cache> CloneNoPersistence for WalletCache<L2> {
Self {
persistence: None,
descriptor: self.descriptor.clone(),
last_block: self.last_block.clone(),
last_change: self.last_change.clone(),
last_block: self.last_block,
last_change: self.last_change,
headers: self.headers.clone(),
tx: self.tx.clone(),
utxo: self.utxo.clone(),
Expand Down

0 comments on commit f3ce1c3

Please sign in to comment.