Skip to content

Commit

Permalink
fix evm build
Browse files Browse the repository at this point in the history
  • Loading branch information
yerke26 committed Dec 9, 2024
1 parent 4a83375 commit aa8cc8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/Evm/T8n/T8nTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private BlockHeader ConstructBlockHeader()
.WithExcessBlobGas((ulong)ParentExcessBlobGas)
.WithBlobGasUsed((ulong)ParentBlobGasUsed)
.TestObject;
header.ExcessBlobGas = BlobGasCalculator.CalculateExcessBlobGas(parentHeader, Spec, header);
header.ExcessBlobGas = BlobGasCalculator.CalculateExcessBlobGas(parentHeader, Spec);
}
header.BlobGasUsed = BlobGasCalculator.CalculateBlobGas(Transactions);
header.IsPostMerge = Spec is Paris;
Expand Down

0 comments on commit aa8cc8b

Please sign in to comment.