From e138cfb4234c663a7bfd76398ef1a0ecc4c7ed15 Mon Sep 17 00:00:00 2001 From: Brian Olson Date: Thu, 27 Jun 2024 07:02:36 -0400 Subject: [PATCH] fix --- testsuite/smoke-test/src/fullnode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/smoke-test/src/fullnode.rs b/testsuite/smoke-test/src/fullnode.rs index c060a6699264b..35b22ec579ab1 100644 --- a/testsuite/smoke-test/src/fullnode.rs +++ b/testsuite/smoke-test/src/fullnode.rs @@ -146,7 +146,7 @@ async fn test_internal_indexer_with_fast_sync() { .wait_for_all_nodes_to_catchup(Duration::from_secs(60)) .await .unwrap(); - let node = swarm.full_node_mut(peer_id).unwrap(); + let node = swarm.full_node(peer_id).unwrap(); let node_config = node.config().to_owned(); node.stop().await.unwrap(); check_indexer_db(&node_config);