From 25a8c290e900856d66ca9dae668aa19f711999e9 Mon Sep 17 00:00:00 2001 From: YaelD <70628564+Yael-Starkware@users.noreply.github.com> Date: Thu, 11 Jul 2024 13:55:21 +0300 Subject: [PATCH] chore: remove todos (#436) --- crates/tests-integration/src/state_reader.rs | 25 +++----------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/crates/tests-integration/src/state_reader.rs b/crates/tests-integration/src/state_reader.rs index 455a3c3e..4b384184 100644 --- a/crates/tests-integration/src/state_reader.rs +++ b/crates/tests-integration/src/state_reader.rs @@ -15,7 +15,6 @@ use mempool_test_utils::starknet_api_test_utils::{ deploy_account_tx, deployed_account_contract_address, }; use papyrus_common::pending_classes::PendingClasses; -use papyrus_common::BlockHashAndNumber; use papyrus_rpc::{run_server, RpcConfig}; use papyrus_storage::body::BodyStorageWriter; use papyrus_storage::class::ClassStorageWriter; @@ -267,24 +266,6 @@ fn fund_account( } } -// TODO(Yael 5/6/2024): remove this function and use the one from papyrus test utils once we have -// mono-repo. -fn get_test_highest_block() -> Arc>> { - Arc::new(RwLock::new(None)) -} - -// TODO(Yael 5/6/2024): remove this function and use the one from papyrus test utils once we have -// mono-repo. -fn get_test_pending_data() -> Arc> { - Arc::new(RwLock::new(PendingData::default())) -} - -// TODO(Yael 5/6/2024): remove this function and use the one from papyrus test utils once we have -// mono-repo. -fn get_test_pending_classes() -> Arc> { - Arc::new(RwLock::new(PendingClasses::default())) -} - async fn run_papyrus_rpc_server(storage_reader: StorageReader) -> SocketAddr { let rpc_config = RpcConfig { server_address: get_available_socket().await.to_string(), @@ -292,9 +273,9 @@ async fn run_papyrus_rpc_server(storage_reader: StorageReader) -> SocketAddr { }; let (addr, handle) = run_server( &rpc_config, - get_test_highest_block(), - get_test_pending_data(), - get_test_pending_classes(), + Arc::new(RwLock::new(None)), + Arc::new(RwLock::new(PendingData::default())), + Arc::new(RwLock::new(PendingClasses::default())), storage_reader, "NODE VERSION", )