1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
use crate::{account::Account, hash::Hash};

crate::declare_id!("NativeLoader1111111111111111111111111111111");

/// Create an executable account with the given shared object name.
pub fn create_loadable_account(name: &str) -> Account {
    Account {
        lamports: 1,
        owner: id(),
        data: name.as_bytes().to_vec(),
        executable: true,
        rent_epoch: 0,
        hash: Hash::default(),
    }
}