| 27 | const LATEST_CHECKPOINT_EPOCH_KEY: [u8; 2] = [STATE_PREFIX, 2]; |
| 28 | |
| 29 | pub struct FinalizerState<E: BufferPooler + Clock + Storage + Metrics, V: Variant> { |
| 30 | store: Db<E, FixedBytes<64>, Value<V>, EightCap>, |
| 31 | cancellation_token: CancellationToken, |
| 32 | } |
| 33 | |
| 34 | impl<E: BufferPooler + Clock + Storage + Metrics, V: Variant> FinalizerState<E, V> { |
| 35 | pub async fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected