Skip to content

Commit

Permalink
temp: remove MSRV toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
rustaceanrob committed Jun 1, 2024
1 parent 0d2c34c commit b0f8212
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
# Minumum Supported Rust Version (MSRV) is 1.56.1.
toolchain: [1.56.1, stable, beta, nightly]
toolchain: [stable, beta, nightly]
steps:
- uses: actions/checkout@v3
- name: Update Toolchain
Expand Down
2 changes: 1 addition & 1 deletion example/signet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async fn main() {
.await;
// Check if the node is running. Another part of the program may be giving us the node.
if !node.is_running() {
let _ = tokio::task::spawn(async move { node.run().await });
let _ = tokio::task::spawn(async move { node.run().await }).await;
}
// Split the client into components that send messages and listen to messages.
// With this construction, different parts of the program can take ownership of
Expand Down

0 comments on commit b0f8212

Please sign in to comment.