From 72a9a874a0a5dce3fdff736346480503b17ed57d Mon Sep 17 00:00:00 2001 From: 0o-de-lally <1364012+0o-de-lally@users.noreply.github.com> Date: Wed, 4 Dec 2024 16:48:07 -0500 Subject: [PATCH] clippy --- tests/test_load_tx.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_load_tx.rs b/tests/test_load_tx.rs index 25bcf6c..a8df581 100644 --- a/tests/test_load_tx.rs +++ b/tests/test_load_tx.rs @@ -18,7 +18,7 @@ use support::neo4j_testcontainer::start_neo4j_container; async fn test_tx_batch() -> anyhow::Result<()> { libra_forensic_db::log_setup(); let archive_path = support::fixtures::v6_tx_manifest_fixtures_path(); - let (txs, events) = extract_current_transactions(&archive_path).await?; + let (txs, _events) = extract_current_transactions(&archive_path).await?; assert!(txs.len() == 27); let c = start_neo4j_container();