From 82658bd8f72c08bac10dde2a3474ebaac79605d5 Mon Sep 17 00:00:00 2001 From: healthyyyoung Date: Tue, 11 Jun 2024 01:42:02 +0800 Subject: [PATCH] Update EthSimulateTestsBlocksAndTransactions.cs --- .../Eth/Simulate/EthSimulateTestsBlocksAndTransactions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Nethermind/Nethermind.JsonRpc.Test/Modules/Eth/Simulate/EthSimulateTestsBlocksAndTransactions.cs b/src/Nethermind/Nethermind.JsonRpc.Test/Modules/Eth/Simulate/EthSimulateTestsBlocksAndTransactions.cs index 233f9bd8d49..28a28e68803 100644 --- a/src/Nethermind/Nethermind.JsonRpc.Test/Modules/Eth/Simulate/EthSimulateTestsBlocksAndTransactions.cs +++ b/src/Nethermind/Nethermind.JsonRpc.Test/Modules/Eth/Simulate/EthSimulateTestsBlocksAndTransactions.cs @@ -26,11 +26,11 @@ namespace Nethermind.JsonRpc.Test.Modules.Eth; public class EthSimulateTestsBlocksAndTransactions { - private static Transaction GetTransferTxData(UInt256 nonce, IEthereumEcdsa ethereumEcdsa, PrivateKey from, Address to, UInt256 ammount) + private static Transaction GetTransferTxData(UInt256 nonce, IEthereumEcdsa ethereumEcdsa, PrivateKey from, Address to, UInt256 amount) { Transaction tx = new() { - Value = ammount, + Value = amount, Nonce = nonce, GasLimit = 50_000, SenderAddress = from.Address,