From 47509d6398fcbbe6af038071e72a208794f82091 Mon Sep 17 00:00:00 2001 From: Jagadish Krishnamoorthy Date: Tue, 31 Jan 2023 00:52:55 -0800 Subject: [PATCH] Update evm.json Fix typo in "SUB" hint --- evm.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evm.json b/evm.json index 9029faa..1efb19a 100644 --- a/evm.json +++ b/evm.json @@ -224,7 +224,7 @@ }, { "name": "SUB (underflow)", - "hint": "Underflow works the same way as overflow, 3 - 2 wraps around and results in MAX_UINT256", + "hint": "Underflow works the same way as overflow, 2 - 3 wraps around and results in MAX_UINT256", "code": { "asm": "PUSH1 0x03\nPUSH1 0x02\nSUB", "bin": "6003600203" @@ -2368,4 +2368,4 @@ "success": true } } -] \ No newline at end of file +]