Skip to content

Commit

Permalink
Update src/Nethermind/Nethermind.Evm.Test/Eip2028Tests.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Lukasz Rozmej <[email protected]>
  • Loading branch information
tanishqjasoria and LukaszRozmej authored Dec 5, 2024
1 parent 3a98449 commit 580168e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Nethermind/Nethermind.Evm.Test/Eip2028Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ public void non_zero_transaction_data_cost_should_be_16()
{
Transaction transaction = new Transaction { Data = new byte[] { 1 }, To = Address.Zero };
var cost = IntrinsicGasCalculator.Calculate(transaction, Spec);
cost.FloorGas.Should().Be(0);
cost.IntrinsicGas.Should().Be(GasCostOf.Transaction + GasCostOf.TxDataNonZeroEip2028);
cost.Should().Be(new(GasCostOf.Transaction + GasCostOf.TxDataNonZeroEip2028), 0);

Check failure on line 27 in src/Nethermind/Nethermind.Evm.Test/Eip2028Tests.cs

View workflow job for this annotation

GitHub Actions / Build (release, Benchmarks)

Argument 2: cannot convert from 'int' to 'string'

Check failure on line 27 in src/Nethermind/Nethermind.Evm.Test/Eip2028Tests.cs

View workflow job for this annotation

GitHub Actions / Build (release, Benchmarks)

Argument 2: cannot convert from 'int' to 'string'

Check failure on line 27 in src/Nethermind/Nethermind.Evm.Test/Eip2028Tests.cs

View workflow job for this annotation

GitHub Actions / Build (debug, Benchmarks)

Argument 2: cannot convert from 'int' to 'string'

Check failure on line 27 in src/Nethermind/Nethermind.Evm.Test/Eip2028Tests.cs

View workflow job for this annotation

GitHub Actions / Build (debug, Benchmarks)

Argument 2: cannot convert from 'int' to 'string'

Check failure on line 27 in src/Nethermind/Nethermind.Evm.Test/Eip2028Tests.cs

View workflow job for this annotation

GitHub Actions / Build (release, EthereumTests)

Argument 2: cannot convert from 'int' to 'string'

Check failure on line 27 in src/Nethermind/Nethermind.Evm.Test/Eip2028Tests.cs

View workflow job for this annotation

GitHub Actions / Build (debug, EthereumTests)

Argument 2: cannot convert from 'int' to 'string'
}

[Test]
Expand Down

0 comments on commit 580168e

Please sign in to comment.