mirror of
https://github.com/status-im/ethereumj-personal.git
synced 2025-01-11 20:34:21 +00:00
Fix missing step after SWAP operations
This commit is contained in:
parent
3065258dc2
commit
5428b47c8d
@ -734,7 +734,8 @@ public class VM {
|
||||
program.stackRequire(n);
|
||||
DataWord word_1 = stack.peek();
|
||||
stack.set(stack.size() - 1, stack.get(stack.size() - n));
|
||||
stack.set(stack.size() - n, word_1);
|
||||
stack.set(stack.size() - n, word_1);
|
||||
program.step();
|
||||
|
||||
} break;
|
||||
case MLOAD:{
|
||||
|
Loading…
x
Reference in New Issue
Block a user