From f516105686ab0b17f9c1afad158b3fa8bbf4393c Mon Sep 17 00:00:00 2001 From: Gabriel-Trintinalia Date: Fri, 13 Dec 2024 10:56:43 +0800 Subject: [PATCH] Fix missing rename 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 15fe6a63971..da0846890f6 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 @@ -49,7 +49,7 @@ public List getReceipts() { } public List getTransactionSimulations() { - return transactionSimulations; + return transactionSimulationResults; } public Block getBlock() {