| 225 | /// 0. `[writable, signer]` account |
| 226 | #[derive(Clone, Debug)] |
| 227 | pub struct AssignCpiBuilder<'a, 'b> { |
| 228 | instruction: Box<AssignCpiBuilderInstruction<'a, 'b>>, |
| 229 | } |
| 230 | |
| 231 | impl<'a, 'b> AssignCpiBuilder<'a, 'b> { |
| 232 | pub fn new(program: &'b solana_account_info::AccountInfo<'a>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected