We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee821fc commit 7dca4c8Copy full SHA for 7dca4c8
2 files changed
.github/workflows/tests.yml
@@ -41,6 +41,9 @@ jobs:
41
- name: Check clippy
42
run: ./ci/check-lint.sh
43
44
+ - name: Check examples
45
+ run: cargo check -p orange-cli
46
+
47
- name: Run tests
48
run: cargo test --features _test-utils
49
examples/cli/src/main.rs
@@ -133,7 +133,7 @@ impl WalletState {
133
134
println!("{} Initializing wallet...", "⚡".bright_yellow());
135
136
- match Wallet::new(runtime.clone(), config).await {
+ match Wallet::new_with_runtime(runtime.clone(), config).await {
137
Ok(wallet) => {
138
println!("{} Wallet initialized successfully!", "✅".bright_green());
139
println!("Network: {}", NETWORK.to_string().bright_cyan());
0 commit comments