Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
include:
- target: aarch64-unknown-linux-gnu
os: ubuntu-20.04
os: ubuntu-24.04
build_tool: cross # Use https://github.com/cross-rs/cross for ARM
- target: x86_64-apple-darwin
os: macos-latest
Expand All @@ -29,9 +29,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

upload-asset-x86-ubuntu-18:
upload-asset-x86-ubuntu-24:
runs-on: ubuntu-latest
container: 'ubuntu:18.04'
container: 'ubuntu:24.04'
steps:
- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion core/src/node_interface/node_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ impl NodeApi {
Ok(tx)
}
Err(wallet_err) => {
log::error!("Sign Transaction Failed: {}", wallet_err.to_string());
log::error!("Sign Transaction Failed: {}", wallet_err);
Err(NodeApiError::WalletError(wallet_err))
}
}
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.82.0
1.85.0
Loading