Skip to content

Commit db851b2

Browse files
committed
comments
1 parent d8e1643 commit db851b2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/tasks/submit/prep.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,14 @@ impl<'a> SubmitPrep<'a> {
9292
self.quincey_resp().await.map(|resp| &resp.sig).map(utils::extract_signature_components)
9393
}
9494

95-
/// Build the sidecar and input data for the transaction.
95+
/// Encodes the rollup block into a sidecar.
9696
async fn build_sidecar(&self) -> eyre::Result<BlobTransactionSidecar> {
9797
let sidecar = self.block.encode_blob::<SimpleCoder>().build()?;
9898

9999
Ok(sidecar)
100100
}
101+
102+
/// Build a signature and header input for the host chain transaction.
101103
async fn build_input(&self) -> eyre::Result<Vec<u8>> {
102104
let (v, r, s) = self.quincey_signature().await?;
103105

0 commit comments

Comments
 (0)