We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11bc2dc commit 85ae7e5Copy full SHA for 85ae7e5
examples/basic.rs
@@ -42,7 +42,7 @@ async fn main() -> Result<()> {
42
Network::Mainnet
43
);
44
45
- client.wait_synced().await;
+ client.wait_synced().await?;
46
47
let client_version = client.get_client_version().await;
48
let head_block_num = client.get_block_number().await?;
examples/call.rs
@@ -48,7 +48,7 @@ async fn main() -> eyre::Result<()> {
49
50
// Wait for Helios to sync
51
52
53
// Call on helios client
54
let tx = TransactionRequest {
0 commit comments