Skip to content

Commit

Permalink
replace usage of solana_sdk::pubkey
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinheavey committed Jan 1, 2025
1 parent 51b3bcd commit ef2abb7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions accounts-db/src/accounts_db/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5467,8 +5467,8 @@ define_accounts_db_test!(
test_calculate_storage_count_and_alive_bytes_2_accounts,
|accounts| {
let keys = [
solana_sdk::pubkey::Pubkey::from([0; 32]),
solana_sdk::pubkey::Pubkey::from([255; 32]),
solana_pubkey::Pubkey::from([0; 32]),
solana_pubkey::Pubkey::from([255; 32]),
];
accounts.accounts_index.set_startup(Startup::Startup);

Expand Down
2 changes: 1 addition & 1 deletion accounts-db/src/pubkey_bins.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use solana_sdk::pubkey::Pubkey;
use solana_pubkey::Pubkey;

#[derive(Debug)]
pub struct PubkeyBinCalculator24 {
Expand Down
2 changes: 1 addition & 1 deletion accounts-db/src/tiered_storage/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use {
},
bytemuck::{Pod, Zeroable},
memmap2::Mmap,
solana_sdk::pubkey::Pubkey,
solana_pubkey::Pubkey,
};

/// The in-memory struct for the writing index block.
Expand Down
2 changes: 1 addition & 1 deletion accounts-db/src/tiered_storage/owners.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use {
},
indexmap::set::IndexSet,
memmap2::Mmap,
solana_sdk::pubkey::Pubkey,
solana_pubkey::Pubkey,
};

/// The offset to an owner entry in the owners block.
Expand Down

0 comments on commit ef2abb7

Please sign in to comment.