Skip to content

Commit

Permalink
fix: de-concurrent
Browse files Browse the repository at this point in the history
  • Loading branch information
prestwich committed May 3, 2024
1 parent b2338d8 commit d369bd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/builder/src/tasks/submit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ where

#[instrument(skip_all, err)]
async fn construct_sig_request(&self, contents: &InProgressBlock) -> eyre::Result<SignRequest> {
let (sequence, confirm_by) = try_join!(self.get_next_sequence(), self.get_confirm_by())?;
let sequence = self.get_next_sequence().await?;
let confirm_by = self.get_confirm_by().await?;

Ok(SignRequest {
host_chain_id: U256::from(self.config.host_chain_id),
Expand Down

0 comments on commit d369bd3

Please sign in to comment.