From d8f975e72c0369cecea2506af3ce9ce0a6000091 Mon Sep 17 00:00:00 2001 From: Evan Batsell Date: Tue, 19 Nov 2024 13:10:06 -0500 Subject: [PATCH] Rm prints --- integration_tests/tests/fixtures/restaking_client.rs | 4 ---- integration_tests/tests/fixtures/tip_router_client.rs | 4 ---- integration_tests/tests/fixtures/vault_client.rs | 4 ---- 3 files changed, 12 deletions(-) diff --git a/integration_tests/tests/fixtures/restaking_client.rs b/integration_tests/tests/fixtures/restaking_client.rs index 227ede53..d85d6928 100644 --- a/integration_tests/tests/fixtures/restaking_client.rs +++ b/integration_tests/tests/fixtures/restaking_client.rs @@ -1065,10 +1065,6 @@ impl RestakingProgramClient { } pub async fn process_transaction(&mut self, tx: &Transaction) -> TestResult<()> { - debug!( - "Restaking Client processing transaction: {:?}", - tx.signatures[0] - ); self.banks_client .process_transaction_with_preflight_and_commitment( tx.clone(), diff --git a/integration_tests/tests/fixtures/tip_router_client.rs b/integration_tests/tests/fixtures/tip_router_client.rs index 8b09ed5c..c4dea87a 100644 --- a/integration_tests/tests/fixtures/tip_router_client.rs +++ b/integration_tests/tests/fixtures/tip_router_client.rs @@ -51,10 +51,6 @@ impl TipRouterClient { } pub async fn process_transaction(&mut self, tx: &Transaction) -> TestResult<()> { - println!( - "Tip Router Client processing transaction: {:?}", - tx.signatures[0] - ); self.banks_client .process_transaction_with_preflight_and_commitment( tx.clone(), diff --git a/integration_tests/tests/fixtures/vault_client.rs b/integration_tests/tests/fixtures/vault_client.rs index 5ad1f951..b065ab5b 100644 --- a/integration_tests/tests/fixtures/vault_client.rs +++ b/integration_tests/tests/fixtures/vault_client.rs @@ -1447,10 +1447,6 @@ impl VaultProgramClient { } async fn _process_transaction(&mut self, tx: &Transaction) -> Result<(), TestError> { - println!( - "Vault Client processing transaction: {:?}", - tx.signatures[0] - ); self.banks_client .process_transaction_with_preflight_and_commitment( tx.clone(),