From 9de954d647e63ab962be8b08414be62184cf2e39 Mon Sep 17 00:00:00 2001 From: Gabriel-Trintinalia Date: Fri, 13 Dec 2024 13:52:31 +1100 Subject: [PATCH] Update ethereum/core/src/main/java/org/hyperledger/besu/ethereum/transaction/BlockSimulationResult.java Co-authored-by: Stefan Pingel <16143240+pinges@users.noreply.github.com> Signed-off-by: Gabriel-Trintinalia --- .../besu/ethereum/transaction/BlockSimulationResult.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/transaction/BlockSimulationResult.java b/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/transaction/BlockSimulationResult.java index 275503781a2..15fe6a63971 100644 --- a/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/transaction/BlockSimulationResult.java +++ b/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/transaction/BlockSimulationResult.java @@ -30,7 +30,7 @@ public class BlockSimulationResult { public BlockSimulationResult( final Block block, final List receipts, - final List transactionSimulations) { + final List transactionSimulationResults) { this.block = block; this.receipts = new ArrayList<>(receipts); this.transactionSimulationResults = transactionSimulationResults;