Skip to content

Commit b8140c2

Browse files
authored
Merge pull request #335 from Alesfatalis/fix-ci
update rust-toolchain to 1.85.0 and ubuntu images to lts 24.04
2 parents a3a70e4 + 6e6cb03 commit b8140c2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
include:
1313
- target: aarch64-unknown-linux-gnu
14-
os: ubuntu-20.04
14+
os: ubuntu-24.04
1515
build_tool: cross # Use https://github.com/cross-rs/cross for ARM
1616
- target: x86_64-apple-darwin
1717
os: macos-latest
@@ -29,9 +29,9 @@ jobs:
2929
env:
3030
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3131

32-
upload-asset-x86-ubuntu-18:
32+
upload-asset-x86-ubuntu-24:
3333
runs-on: ubuntu-latest
34-
container: 'ubuntu:18.04'
34+
container: 'ubuntu:24.04'
3535
steps:
3636
- name: Install dependencies
3737
run: |

core/src/node_interface/node_api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ impl NodeApi {
284284
Ok(tx)
285285
}
286286
Err(wallet_err) => {
287-
log::error!("Sign Transaction Failed: {}", wallet_err.to_string());
287+
log::error!("Sign Transaction Failed: {}", wallet_err);
288288
Err(NodeApiError::WalletError(wallet_err))
289289
}
290290
}

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.82.0
1+
1.85.0

0 commit comments

Comments
 (0)