Fixes to initial code

This commit is contained in:
Jason Davis 2022-04-13 15:11:39 -05:00 committed by Jason
parent 5472d2e605
commit ed7813e698
3 changed files with 1 additions and 4 deletions

View File

@ -42,7 +42,7 @@ use {
pubkey::Pubkey,
slot_hashes::SlotHashes,
system_program,
sysvar::{self, epoch_schedule::EpochSchedule, instructions::construct_instructions_data},
sysvar::{self, instructions::construct_instructions_data},
transaction::{Result, SanitizedTransaction, TransactionAccountLocks, TransactionError},
transaction_context::TransactionAccount,
},

View File

@ -6,7 +6,6 @@ use {
solana_sdk::{
hash::{Hash, Hasher},
pubkey::Pubkey,
sysvar::epoch_schedule::EpochSchedule,
},
std::{
borrow::Borrow,

View File

@ -5907,7 +5907,6 @@ impl Bank {
&self.ancestors,
self.capitalization(),
test_hash_calculation,
self.epoch_schedule(),
&self.rent_collector,
)
}
@ -5976,7 +5975,6 @@ impl Bank {
self.slot(),
can_cached_slot_be_unflushed,
debug_verify,
self.epoch_schedule(),
&self.rent_collector,
)
}