Skip to content

Commit c0c4ddd

Browse files
committed
kevm-pyk/evm: correct variable name
1 parent abb872f commit c0c4ddd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • kevm-pyk/src/kevm_pyk/kproj/evm-semantics

kevm-pyk/src/kevm_pyk/kproj/evm-semantics/evm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ The `#next [_]` operator initiates execution by:
389389
rule #stackUnderflow( _W0 : _W1 : _W2 : _W3 : _WS , _QOP:QuadStackOp ) => false
390390
rule #stackUnderflow( _W0 : _W1 : _W2 : _W3 : _W4 : _W5 : _W6 : _WS , _CSOP:CallSixOp ) => false
391391
rule #stackUnderflow( _W0 : _W1 : _W2 : _W3 : _W4 : _W5 : _W6 : _W7 : _WS , COP:CallOp ) => false requires notBool isCallSixOp(COP)
392-
rule #stackUnderflow(WS, _POP:OpCode) => #sizeWordStack(WS) <Int #stackNeeded(OP) [owise]
392+
rule #stackUnderflow(WS, OP:OpCode) => #sizeWordStack(WS) <Int #stackNeeded(OP) [owise]
393393
394394
rule #stackOverflow(_WS, OP) => false requires #stackDelta(OP) <=Int 0
395395
rule #stackOverflow(WS, OP) => 1024 <Int #sizeWordStack(WS) +Int #stackDelta(OP) [owise]

0 commit comments

Comments
 (0)