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