Skip to content

Commit

Permalink
Adjust imports
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Aug 1, 2022
1 parent d94f720 commit 12be89d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions sdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,17 @@ extern crate self as solana_sdk;
pub use signer::signers;
// These solana_program imports could be *-imported, but that causes a bunch of
// confusing duplication in the docs due to a rustdoc bug. #26211
#[allow(deprecated)]
pub use solana_program::info;
#[cfg(target_os = "solana")]
pub use solana_program::syscalls;
#[cfg(not(target_os = "solana"))]
pub use solana_program::program_stubs;
pub use solana_program::{
account_info, address_lookup_table_account, blake3, borsh, bpf_loader, bpf_loader_deprecated,
bpf_loader_upgradeable, clock, clone_zeroed, config, copy_field, custom_heap_default,
custom_panic_default, debug_account_data, declare_deprecated_sysvar_id, declare_sysvar_id,
decode_error, ed25519_program, epoch_schedule, fee_calculator, impl_sysvar_get, incinerator,
instruction, keccak, lamports, loader_instruction, loader_upgradeable_instruction, message,
msg, native_token, nonce, program, program_error, program_memory, program_option, program_pack,
program_stubs, rent, sanitize, sdk_ids, secp256k1_program, secp256k1_recover, serialize_utils,
short_vec, slot_hashes, slot_history, stake, stake_history, system_instruction, system_program,
rent, sanitize, sdk_ids, secp256k1_program, secp256k1_recover, serialize_utils, short_vec,
slot_hashes, slot_history, stake, stake_history, syscalls, system_instruction, system_program,
sysvar, unchecked_div_by_const, vote, wasm_bindgen,
};

Expand Down

0 comments on commit 12be89d

Please sign in to comment.