Skip to content

Commit

Permalink
post-rebase fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Aug 9, 2024
1 parent e4ca26e commit d35364e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion programs/vote/src/vote_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,6 @@ mod tests {
},
},
bincode::serialize,
solana_feature_set::FeatureSet,
solana_program_runtime::invoke_context::mock_process_instruction,
solana_sdk::{
account::{self, Account, AccountSharedData, ReadableAccount},
Expand Down
1 change: 0 additions & 1 deletion runtime/src/bank/fee_distribution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,6 @@ pub mod tests {
create_genesis_config, create_genesis_config_with_leader,
create_genesis_config_with_vote_accounts, ValidatorVoteKeypairs,
},
solana_feature_set as feature_set,
solana_sdk::{
account::AccountSharedData, native_token::sol_to_lamports, pubkey, rent::Rent,
signature::Signer,
Expand Down
2 changes: 1 addition & 1 deletion sdk/feature-set/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ pub mod vote_only_retransmitter_signed_fec_sets {
}

pub mod enable_turbine_extended_fanout_experiments {
solana_sdk::declare_id!("BZn14Liea52wtBwrXUxTv6vojuTTmfc7XGEDTXrvMD7b");
solana_program::declare_id!("BZn14Liea52wtBwrXUxTv6vojuTTmfc7XGEDTXrvMD7b");
}

lazy_static! {
Expand Down
2 changes: 1 addition & 1 deletion test-validator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ impl TestValidatorGenesis {
.for_each(|(maybe_account, feature_id)| {
if maybe_account
.as_ref()
.and_then(solana_feature_set::from_account)
.and_then(solana_sdk::feature::from_account)
.and_then(|feature| feature.activated_at)
.is_none()
{
Expand Down

0 comments on commit d35364e

Please sign in to comment.