From a7cbe276778d730f25cec8bf7a4f9f17c3f95236 Mon Sep 17 00:00:00 2001 From: Marcin Sobczak <77129288+marcindsobczak@users.noreply.github.com> Date: Thu, 4 Jan 2024 10:32:12 +0100 Subject: [PATCH] Fix `BlobGasUsed` and `ExcessBlobGas` in Cancun genesis (#6446) * try hotfix * try with default 0 * another approach * try * requested simplification --- .../ChainSpecStyle/Json/ChainSpecGenesisJson.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Nethermind/Nethermind.Specs/ChainSpecStyle/Json/ChainSpecGenesisJson.cs b/src/Nethermind/Nethermind.Specs/ChainSpecStyle/Json/ChainSpecGenesisJson.cs index c04038cafe0..a72fb549b86 100644 --- a/src/Nethermind/Nethermind.Specs/ChainSpecStyle/Json/ChainSpecGenesisJson.cs +++ b/src/Nethermind/Nethermind.Specs/ChainSpecStyle/Json/ChainSpecGenesisJson.cs @@ -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; } } }