diff --git a/src/Nethermind/Nethermind.Blockchain.Test/Validators/TxValidatorTests.cs b/src/Nethermind/Nethermind.Blockchain.Test/Validators/TxValidatorTests.cs
index c29d6cf7b62..5255076f1b3 100644
--- a/src/Nethermind/Nethermind.Blockchain.Test/Validators/TxValidatorTests.cs
+++ b/src/Nethermind/Nethermind.Blockchain.Test/Validators/TxValidatorTests.cs
@@ -531,6 +531,10 @@ public void IsWellFormed_BlobTxHasProofOverTheSizeLimit_ReturnFalse()
Assert.That(txValidator.IsWellFormed(tx, Cancun.Instance, out error), Is.False);
}
+ ///
+ /// According to https://github.com/ethereum/EIPs/blob/e2c094cd0f50303eddcfb87f36899e00545dcaaf/EIPS/eip-4844.md?plain=1#L11
+ /// EIP 4844 implies 1559, thus the ReleaseSpec we're constructing here should not be possible.
+ ///
[Test]
public void BlobTransactions_are_valid_with_eip4844_no_eip1559()
{
@@ -550,6 +554,7 @@ public void BlobTransactions_are_valid_with_eip4844_no_eip1559()
txValidator.IsWellFormed(tx, releaseSpec).Should().BeTrue();
}
+ /// Same as
[Test]
public void BlobTransactions_bad_gas_fields_is_valid_when_no_eip1559()
{