We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 356a4cb commit 7d75424Copy full SHA for 7d75424
src/tasks/submit/prep.rs
@@ -119,7 +119,11 @@ impl<'a> SubmitPrep<'a> {
119
debug!(nonce, "assigned nonce to rollup block transaction");
120
121
// Create a blob transaction with the blob header and signature values and return it
122
- let tx = self.build_blob_tx().await?.with_to(self.config.constants.host_zenith()).with_nonce(nonce);
+ let tx = self
123
+ .build_blob_tx()
124
+ .await?
125
+ .with_to(self.config.constants.host_zenith())
126
+ .with_nonce(nonce);
127
128
Ok(tx)
129
}
0 commit comments