| 36 | |
| 37 | #[derive(Debug, Serialize, Deserialize, Clone)] |
| 38 | pub struct CheckpointRes { |
| 39 | pub digest: [u8; 32], |
| 40 | pub epoch: u64, |
| 41 | pub checkpoint: Vec<u8>, |
| 42 | pub last_block: Vec<u8>, |
| 43 | pub finalized_header: Vec<u8>, |
| 44 | } |
| 45 | |
| 46 | #[derive(Debug, Serialize, Deserialize, Clone)] |
| 47 | pub struct CheckpointInfoRes { |
nothing calls this directly
no outgoing calls
no test coverage detected