(&mut self, amount: u64)
| 110 | } |
| 111 | #[inline(always)] |
| 112 | pub fn amount(&mut self, amount: u64) -> &mut Self { |
| 113 | self.amount = Some(amount); |
| 114 | self |
| 115 | } |
| 116 | /// Add an additional account to the instruction. |
| 117 | #[inline(always)] |
| 118 | pub fn add_remaining_account(&mut self, account: solana_instruction::AccountMeta) -> &mut Self { |
nothing calls this directly
no outgoing calls
no test coverage detected