Skip to content

Commit

Permalink
fix ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
gballet committed Aug 30, 2024
1 parent 59ea8c7 commit 4fb3421
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ pub fn main() !void {
.base_fee_per_gas = 0,
.withdrawals_root = [_]u8{0} ** 32,
};
var blockchain = try Blockchain.init(allocator, config.chainId, &statedb, parent_header, Fork.base.fork);
var blockchain = try Blockchain.init(allocator, config.chainId, &statedb, parent_header, try Fork.base.newBaseFork(allocator));

var engine_api_server = try httpz.ServerApp(*Blockchain).init(allocator, .{
.port = port,
Expand Down

0 comments on commit 4fb3421

Please sign in to comment.