()
| 49 | |
| 50 | impl AllocateInstructionData { |
| 51 | pub fn new() -> Self { |
| 52 | Self { discriminator: 8 } |
| 53 | } |
| 54 | |
| 55 | pub(crate) fn try_to_vec(&self) -> Result<Vec<u8>, std::io::Error> { |
| 56 | borsh::to_vec(self) |
nothing calls this directly
no outgoing calls
no test coverage detected