diff --git a/src/Nethermind/Ethereum.Basic.Test/TransactionTests.cs b/src/Nethermind/Ethereum.Basic.Test/TransactionTests.cs index 1ce9cf6f7358..4d1b4cfea7d6 100644 --- a/src/Nethermind/Ethereum.Basic.Test/TransactionTests.cs +++ b/src/Nethermind/Ethereum.Basic.Test/TransactionTests.cs @@ -39,7 +39,7 @@ public static IEnumerable LoadTests() [TestCaseSource(nameof(LoadTests))] public void Test(TransactionTest test) { - EthereumEcdsa ethereumEcdsa = new EthereumEcdsa(TestBlockchainIds.ChainId, LimboLogs.Instance); + EthereumEcdsa ethereumEcdsa = new EthereumEcdsa(TestBlockchainIds.ChainId); Transaction decodedUnsigned = Rlp.Decode(test.Unsigned); Assert.That(decodedUnsigned.Value, Is.EqualTo(test.Value), "value"); Assert.That(decodedUnsigned.GasPrice, Is.EqualTo(test.GasPrice), "gasPrice"); diff --git a/src/Nethermind/Ethereum.KeyAddress.Test/KeyAddressTests.cs b/src/Nethermind/Ethereum.KeyAddress.Test/KeyAddressTests.cs index 0384a6b5a4b2..944ef338d97e 100644 --- a/src/Nethermind/Ethereum.KeyAddress.Test/KeyAddressTests.cs +++ b/src/Nethermind/Ethereum.KeyAddress.Test/KeyAddressTests.cs @@ -26,7 +26,7 @@ public class KeyAddressTests public void SetUp() { Directory.SetCurrentDirectory(AppDomain.CurrentDomain.BaseDirectory); - _ecdsa = new EthereumEcdsa(TestBlockchainIds.ChainId, LimboLogs.Instance); + _ecdsa = new EthereumEcdsa(TestBlockchainIds.ChainId); } private static IEnumerable LoadTests() diff --git a/src/Nethermind/Ethereum.Transaction.Test/TransactionTests.cs b/src/Nethermind/Ethereum.Transaction.Test/TransactionTests.cs index 23682737ab78..ec1f5c3b4ce4 100644 --- a/src/Nethermind/Ethereum.Transaction.Test/TransactionTests.cs +++ b/src/Nethermind/Ethereum.Transaction.Test/TransactionTests.cs @@ -190,7 +190,7 @@ private void RunTest(TransactionTest test, IReleaseSpec spec) Signature expectedSignature = new(validTest.R, validTest.S, validTest.V); Assert.That(transaction.Signature, Is.EqualTo(expectedSignature), "signature"); - IEthereumEcdsa ecdsa = new EthereumEcdsa(useChainId ? BlockchainIds.Mainnet : 0UL, LimboLogs.Instance); + IEthereumEcdsa ecdsa = new EthereumEcdsa(useChainId ? BlockchainIds.Mainnet : 0UL); bool verified = ecdsa.Verify( validTest.Sender, transaction);