(
from_pubkey: &Pubkey,
to_pubkey: &Pubkey,
base: &Pubkey,
seed: &str,
lamports: u64,
space: u64,
owner: &Pubkey,
)
| 25 | } |
| 26 | |
| 27 | pub fn createAccountWithSeed( |
| 28 | from_pubkey: &Pubkey, |
| 29 | to_pubkey: &Pubkey, |
| 30 | base: &Pubkey, |
| 31 | seed: &str, |
| 32 | lamports: u64, |
| 33 | space: u64, |
| 34 | owner: &Pubkey, |
| 35 | ) -> Instruction { |
| 36 | create_account_with_seed(from_pubkey, to_pubkey, base, seed, lamports, space, owner) |
| 37 | } |
| 38 | |
| 39 | pub fn assign(pubkey: &Pubkey, owner: &Pubkey) -> Instruction { |
| 40 | assign(pubkey, owner) |
nothing calls this directly
no test coverage detected