(&mut self, new_account: solana_address::Address)
| 92 | } |
| 93 | #[inline(always)] |
| 94 | pub fn new_account(&mut self, new_account: solana_address::Address) -> &mut Self { |
| 95 | self.new_account = Some(new_account); |
| 96 | self |
| 97 | } |
| 98 | #[inline(always)] |
| 99 | pub fn space(&mut self, space: u64) -> &mut Self { |
| 100 | self.space = Some(space); |
nothing calls this directly
no outgoing calls
no test coverage detected