Skip to content

Commit

Permalink
builder updates for electra
Browse files Browse the repository at this point in the history
  • Loading branch information
ralexstokes committed May 7, 2024
1 parent f1a2ca8 commit 2e6a5de
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mev-build-rs/src/auctioneer/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,14 @@ fn prepare_submission(
blobs_bundle: to_blobs_bundle(payload.sidecars())?,
signature,
}),
Fork::Electra => {
SignedBidSubmission::Electra(block_submission::electra::SignedBidSubmission {
message,
execution_payload,
blobs_bundle: to_blobs_bundle(payload.sidecars())?,
signature,
})
}
other => unreachable!("fork {other} is not reachable from this type"),
};
Ok(submission)
Expand Down

0 comments on commit 2e6a5de

Please sign in to comment.