Skip to content

Commit d8b9c06

Browse files
fix: param order in BeaconBlockBody (#348)
extracted from #347
1 parent 72e25a2 commit d8b9c06

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/state_transition/utils/execution.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ pub fn isMergeTransitionBlock(
2626
comptime fork: ForkSeq,
2727
state: *BeaconState(fork),
2828
comptime block_type: BlockType,
29-
body: *const BeaconBlockBody(fork, block_type),
29+
body: *const BeaconBlockBody(block_type, fork),
3030
) bool {
3131
if (comptime fork != .bellatrix) {
3232
return false;

0 commit comments

Comments
 (0)