We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8e1643 commit db851b2Copy full SHA for db851b2
1 file changed
src/tasks/submit/prep.rs
@@ -92,12 +92,14 @@ impl<'a> SubmitPrep<'a> {
92
self.quincey_resp().await.map(|resp| &resp.sig).map(utils::extract_signature_components)
93
}
94
95
- /// Build the sidecar and input data for the transaction.
+ /// Encodes the rollup block into a sidecar.
96
async fn build_sidecar(&self) -> eyre::Result<BlobTransactionSidecar> {
97
let sidecar = self.block.encode_blob::<SimpleCoder>().build()?;
98
99
Ok(sidecar)
100
101
+
102
+ /// Build a signature and header input for the host chain transaction.
103
async fn build_input(&self) -> eyre::Result<Vec<u8>> {
104
let (v, r, s) = self.quincey_signature().await?;
105
0 commit comments