| 11 | |
| 12 | #[derive(Debug, Clone)] |
| 13 | pub struct UserAccount { |
| 14 | is_initialized: bool, |
| 15 | pub account_type: u8, |
| 16 | pub owner_pubkey: Pubkey, |
| 17 | pub enc_utxos: Vec<u8>, |
| 18 | pub modified_ranges: Vec<usize>, |
| 19 | pub mode_init: bool, |
| 20 | } |
| 21 | |
| 22 | impl Sealed for UserAccount {} |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected