We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5faa9a commit c0df60aCopy full SHA for c0df60a
src/evm.c
@@ -1596,7 +1596,7 @@ static result_t doCall(context_t *callContext) {
1596
OUT_OF_GAS;
1597
}
1598
callContext->gas -= gasCost;
1599
- if (UPPER(UPPER_P(callContext->top + 5)) || LOWER(UPPER_P(callContext->top + 5)) || UPPER(LOWER_P(callContext->top + 5)) || gas > L(callContext->gas)) {
+ if (UPPER(UPPER_P(callContext->top + 4)) || LOWER(UPPER_P(callContext->top + 4)) || UPPER(LOWER_P(callContext->top + 4)) || gas > L(callContext->gas)) {
1600
gas = L(callContext->gas);
1601
1602
callContext->gas -= gas;
0 commit comments