From 863abd4b179688a6b90d6f90b498fbb734244dfd Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Wed, 3 Jul 2024 13:12:17 -0600 Subject: [PATCH] Remove unused method --- runtime/src/bank/recent_blockhashes_account.rs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/runtime/src/bank/recent_blockhashes_account.rs b/runtime/src/bank/recent_blockhashes_account.rs index 6a82cdc9755878..99775d9a2964e3 100644 --- a/runtime/src/bank/recent_blockhashes_account.rs +++ b/runtime/src/bank/recent_blockhashes_account.rs @@ -30,19 +30,6 @@ where to_account(&recent_blockhashes, account) } -#[deprecated( - since = "1.5.17", - note = "Please use `create_account_with_data_for_test` instead" -)] -#[allow(deprecated)] -pub fn create_account_with_data<'a, I>(lamports: u64, recent_blockhash_iter: I) -> AccountSharedData -where - I: IntoIterator>, -{ - #[allow(deprecated)] - create_account_with_data_and_fields(recent_blockhash_iter, (lamports, INITIAL_RENT_EPOCH)) -} - #[allow(deprecated)] pub(in crate::bank) fn create_account_with_data_and_fields<'a, I>( recent_blockhash_iter: I,