Skip to content

Commit 47152cf

Browse files
committed
chore: prepare rebase
1 parent 6c99d06 commit 47152cf

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/consensus/tests/common/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ pub(crate) async fn propose_with_optional_blobs(
196196
state.propose_value_with_blobs(height, round, bytes.clone(), payload, &[], bundle).await?;
197197

198198
let sidecars = if let Some(bundle) = bundle {
199-
let (_header, sidecars) = state.prepare_blob_sidecar_parts(&proposed, Some(bundle))?;
199+
let (_header, sidecars) = state.prepare_blob_sidecar_parts(&proposed, Some(bundle)).await?;
200200
Some(sidecars)
201201
} else {
202202
None

crates/execution/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ malachitebft-proto.workspace = true
1717
alloy-consensus = { workspace = true }
1818
alloy-eips.workspace = true
1919
alloy-network.workspace = true
20+
alloy-primitives.workspace = true
2021
alloy-provider.workspace = true
2122
alloy-rpc-client.workspace = true
2223
alloy-rpc-types = { workspace = true }

crates/test/tests/common/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ pub(crate) async fn propose_with_optional_blobs(
197197
state.propose_value_with_blobs(height, round, bytes.clone(), payload, &[], bundle).await?;
198198

199199
let sidecars = if let Some(bundle) = bundle {
200-
let (_header, sidecars) = state.prepare_blob_sidecar_parts(&proposed, Some(bundle))?;
200+
let (_header, sidecars) = state.prepare_blob_sidecar_parts(&proposed, Some(bundle)).await?;
201201
Some(sidecars)
202202
} else {
203203
None

0 commit comments

Comments
 (0)