Send a flashblock through the background processor and await completion.
(&self, flashblock: Flashblock)
| 260 | |
| 261 | /// Send a flashblock through the background processor and await completion. |
| 262 | pub async fn send_flashblock(&self, flashblock: Flashblock) -> Result<()> { |
| 263 | self.parts.send(flashblock).await |
| 264 | } |
| 265 | |
| 266 | /// Split the wrapper into the underlying node plus flashblocks parts. |
| 267 | pub fn into_parts(self) -> (LocalNode, FlashblocksParts) { |
no test coverage detected