From 2f4fb3a0791d4b78f6266462638cc6846a1447c8 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Wed, 17 May 2023 19:03:02 +0300 Subject: [PATCH] cli: fix error description for `run` VM CLI command Signed-off-by: Anna Shaleva --- cli/vm/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/vm/cli.go b/cli/vm/cli.go index 9b294ed08..ed6b685d9 100644 --- a/cli/vm/cli.go +++ b/cli/vm/cli.go @@ -1085,7 +1085,7 @@ func handleRun(c *cli.Context) error { } if runCurrent { if cs == nil { - return fmt.Errorf("manifest is not loaded; either use 'run' command to run loaded script from the start or use 'loadgo' and 'loadnef' commands to provide manifest") + return fmt.Errorf("manifest is not loaded; either use 'run' command to run loaded script from the start or use 'loadgo', 'loadnef' or 'loaddeployed' commands to provide manifest") } md := cs.Manifest.ABI.GetMethod(args[0], len(params)) if md == nil {