Get a finalized block from the immutable archive.
(&self, height: Height)
| 1301 | height, |
| 1302 | commitment, |
| 1303 | receiver: ack_waiter, |
| 1304 | }); |
| 1305 | } |
| 1306 | } |
| 1307 | |
| 1308 | /// Handle acknowledgement from the application that a block has been processed. |
| 1309 | /// |
| 1310 | /// Buffers the processed height update but does NOT sync to durable storage. |
| 1311 | /// The caller must sync metadata after processing all ready acks. |
| 1312 | async fn handle_block_processed( |
| 1313 | &mut self, |
| 1314 | height: Height, |
| 1315 | commitment: B::Digest, |
no test coverage detected