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 54c8fc4 commit 5aadfd0Copy full SHA for 5aadfd0
packages/rs-sdk/tests/fetch/evonode.rs
@@ -5,6 +5,7 @@ use dash_sdk::platform::{types::evonode::EvoNode, FetchUnproved};
5
use dpp::dashcore::{hashes::Hash, ProTxHash};
6
use drive_proof_verifier::types::EvoNodeStatus;
7
use http::Uri;
8
+use std::ops::Deref;
9
use std::time::Duration;
10
/// Given some existing evonode URIs, WHEN we connect to them, THEN we get status.
11
use tokio::time::timeout;
@@ -18,7 +19,8 @@ async fn test_evonode_status() {
18
19
20
let addresses = cfg.address_list();
21
- for address in addresses {
22
+ for address in addresses.iter() {
23
+ let address = address.deref();
24
let node = EvoNode::new(address.clone());
25
match timeout(
26
Duration::from_secs(3),
0 commit comments