(&mut self, payer: solana_address::Address)
| 105 | } |
| 106 | #[inline(always)] |
| 107 | pub fn payer(&mut self, payer: solana_address::Address) -> &mut Self { |
| 108 | self.payer = Some(payer); |
| 109 | self |
| 110 | } |
| 111 | #[inline(always)] |
| 112 | pub fn new_account(&mut self, new_account: solana_address::Address) -> &mut Self { |
| 113 | self.new_account = Some(new_account); |
nothing calls this directly
no outgoing calls
no test coverage detected