Executes the derivation pipeline to the claimed block. # Errors Returns an error if derivation fails.
(self)
| 79 | /// |
| 80 | /// Returns an error if derivation fails. |
| 81 | pub async fn execute(self) -> Result<Epilogue, FaultProofProgramError> { |
| 82 | self.run_pipeline(|_, _| {}).await |
| 83 | } |
| 84 | |
| 85 | /// Like [`execute`](Self::execute), but also collects per-block `(L2BlockInfo, output_root)` |
| 86 | /// pairs for all intermediate blocks. |