From 3202800811785f47ee33e1ce45e50b5fb2f10995 Mon Sep 17 00:00:00 2001 From: Lucas B Date: Fri, 4 Oct 2024 13:38:20 -0500 Subject: [PATCH] loosen requirements on packets --- core/src/tpu.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/core/src/tpu.rs b/core/src/tpu.rs index 367223f992..5b0c8cf62e 100644 --- a/core/src/tpu.rs +++ b/core/src/tpu.rs @@ -299,11 +299,9 @@ impl Tpu { let bundle_account_locker = BundleAccountLocker::default(); - // tip accounts can't be used in BankingStage to avoid someone from stealing tips mid-slot. - // it also helps reduce surface area for potential account contention + // The tip program can't be used in BankingStage to avoid someone from stealing tips mid-slot. let mut blacklisted_accounts = HashSet::new(); - blacklisted_accounts.insert(tip_manager.tip_payment_config_pubkey()); - blacklisted_accounts.extend(tip_manager.get_tip_accounts()); + blacklisted_accounts.insert(tip_manager.tip_payment_program_id()); let banking_stage = BankingStage::new( block_production_method, cluster_info,