| 81 | /// 0. `[writable, signer]` new_account |
| 82 | #[derive(Clone, Debug, Default)] |
| 83 | pub struct AllocateBuilder { |
| 84 | new_account: Option<solana_address::Address>, |
| 85 | space: Option<u64>, |
| 86 | __remaining_accounts: Vec<solana_instruction::AccountMeta>, |
| 87 | } |
| 88 | |
| 89 | impl AllocateBuilder { |
| 90 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected