Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into add-tx-pool
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobkaufmann committed Aug 12, 2023
2 parents 204b8e3 + febe66e commit 7e1d9bf
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ where
self.config.clone(),
Arc::clone(&self.client),
Arc::clone(&self.pool),
self.bundles.clone().into_iter(),
None.into_iter(),
)?;
Ok(empty.inner)
}
Expand All @@ -310,9 +310,8 @@ where
let config = self.config.clone();
let client = Arc::clone(&self.client);
let pool = Arc::clone(&self.pool);
let bundles = self.bundles.clone().into_iter();
task::spawn_blocking(move || {
let payload = build(config, client, pool, bundles);
let payload = build(config, client, pool, None.into_iter());
let _ = tx.send(payload);
});

Expand Down

0 comments on commit 7e1d9bf

Please sign in to comment.