From b5552e5137cd0f79318b1647b535ec2154ed0a37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Bojarski?= <54240434+letypequividelespoubelles@users.noreply.github.com> Date: Thu, 1 Aug 2024 10:07:45 +0530 Subject: [PATCH] fix(doc): tiny typo (#7388) Signed-off-by: Francois Bojarski Co-authored-by: Sally MacFarlane --- .../hyperledger/besu/evm/operation/AbstractCallOperation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evm/src/main/java/org/hyperledger/besu/evm/operation/AbstractCallOperation.java b/evm/src/main/java/org/hyperledger/besu/evm/operation/AbstractCallOperation.java index 762030bf3b..68ded6793e 100644 --- a/evm/src/main/java/org/hyperledger/besu/evm/operation/AbstractCallOperation.java +++ b/evm/src/main/java/org/hyperledger/besu/evm/operation/AbstractCallOperation.java @@ -197,7 +197,7 @@ public abstract class AbstractCallOperation extends AbstractOperation { if (value(frame).compareTo(balance) > 0 || frame.getDepth() >= 1024) { frame.expandMemory(inputDataOffset(frame), inputDataLength(frame)); frame.expandMemory(outputDataOffset(frame), outputDataLength(frame)); - // For the following, we either increment the gas or return zero so weo don't get double + // For the following, we either increment the gas or return zero, so we don't get double // charged. If we return zero then the traces don't have the right per-opcode cost. frame.incrementRemainingGas(gasAvailableForChildCall(frame) + cost); frame.popStackItems(getStackItemsConsumed());