This commit is contained in:
aniketfuryrocks 2023-02-07 20:05:02 +05:30 committed by Godmode Galactus
parent db0e01506d
commit 6704a4580b
No known key found for this signature in database
GPG Key ID: A04142C71ABB0DEA
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ async fn send_and_confirm_txs() {
let tx_sender = TxSender::new(tpu_client);
let block_store = BlockStore::new(&rpc_client).await.unwrap();
let block_listener = BlockListener::new(tx_sender.clone(), block_store);
let block_listener = BlockListener::new(rpc_client.clone(), tx_sender.clone(), block_store);
let (tx_send, tx_recv) = mpsc::unbounded_channel();