solana/sdk/src/native_loader.rs

15 lines
443 B
Rust
Raw Normal View History

use crate::account::{Account, AccountSharedData};
2018-12-03 13:31:11 -08:00
crate::declare_id!("NativeLoader1111111111111111111111111111111");
2019-02-13 19:43:56 -08:00
/// Create an executable account with the given shared object name.
2021-03-09 13:06:07 -08:00
pub fn create_loadable_account(name: &str, lamports: u64) -> AccountSharedData {
AccountSharedData::from(Account {
lamports,
owner: id(),
data: name.as_bytes().to_vec(),
2019-02-13 19:43:56 -08:00
executable: true,
rent_epoch: 0,
})
2019-02-13 19:43:56 -08:00
}