(&mut self, program_address: Address)
| 98 | } |
| 99 | #[inline(always)] |
| 100 | pub fn program_address(&mut self, program_address: Address) -> &mut Self { |
| 101 | self.program_address = Some(program_address); |
| 102 | self |
| 103 | } |
| 104 | /// Add an additional account to the instruction. |
| 105 | #[inline(always)] |
| 106 | pub fn add_remaining_account(&mut self, account: solana_instruction::AccountMeta) -> &mut Self { |
nothing calls this directly
no outgoing calls
no test coverage detected