From 264dcc2ae69fa71ea7266c7474edba447071e194 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Thu, 14 Sep 2023 15:46:06 -0400 Subject: [PATCH] This command is different for jsligo --- .../tutorials/deploy-your-first-smart-contract/jsligo/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/tutorials/deploy-your-first-smart-contract/jsligo/index.md b/src/pages/tutorials/deploy-your-first-smart-contract/jsligo/index.md index ed3176da8..78d7fff56 100644 --- a/src/pages/tutorials/deploy-your-first-smart-contract/jsligo/index.md +++ b/src/pages/tutorials/deploy-your-first-smart-contract/jsligo/index.md @@ -274,7 +274,7 @@ Before you can deploy the contract to Tezos, you must compile it to Michelson, t For example, this command sets the storage at 10 and increments it by 32: ```bash - ligo run dry-run increment.jsligo -m Counter -e increment "Increment(32)" "10" + ligo run dry-run increment.jsligo -m Counter -e increment "32" "10" ``` The terminal should show the response `(LIST_EMPTY(), 42)`.