Skip to content

Commit

Permalink
Fix BlobGasUsed and ExcessBlobGas in Cancun genesis (#6446)
Browse files Browse the repository at this point in the history
* try hotfix

* try with default 0

* another approach

* try

* requested simplification
  • Loading branch information
marcindsobczak authored and kamilchodola committed Jan 5, 2024
1 parent 7ebeff7 commit fe273cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ internal class ChainSpecGenesisJson
public bool StateUnavailable { get; set; } = false;
public Hash256 StateRoot { get; set; }

public ulong? BlobGasUsed { get; set; }
public ulong? ExcessBlobGas { get; set; }
public ulong BlobGasUsed { get; set; }
public ulong ExcessBlobGas { get; set; }
public Hash256 ParentBeaconBlockRoot { get; set; }
}
}

0 comments on commit fe273cf

Please sign in to comment.