From 1681f74a48e152e6ba94127065d0413d79ed6bb2 Mon Sep 17 00:00:00 2001 From: suurkivi <136639517+suurkivi@users.noreply.github.com> Date: Mon, 9 Dec 2024 12:41:15 -0800 Subject: [PATCH] fix --- tests/consensus_test.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/consensus_test.rs b/tests/consensus_test.rs index be04a1fc..c9d60501 100644 --- a/tests/consensus_test.rs +++ b/tests/consensus_test.rs @@ -22,6 +22,7 @@ use tokio::time; use tonic::transport::Server; use tracing::{error, info}; use tracing_subscriber::EnvFilter; +use snapchain::mempool::mempool; struct NodeForTest { keypair: Keypair, @@ -71,6 +72,7 @@ impl NodeForTest { let node = SnapchainNode::create( keypair.clone(), config, + mempool::Config::default(), None, gossip_tx, Some(block_tx),