Skip to content

Commit

Permalink
Merge branch 'fix_windows_ci' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Oct 12, 2024
2 parents 3bd18c9 + fcd50f4 commit 4c639ca
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 @@ -411,8 +411,8 @@ impl<L2: Layer2Cache> CloneNoPersistence for WalletCache<L2> {
Self {
persistence: None,
id: self.id.clone(),

Check warning on line 413 in src/wallet.rs

View check run for this annotation

Codecov / codecov/patch

src/wallet.rs#L413

Added line #L413 was not covered by tests
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 4c639ca

Please sign in to comment.