cli: fix error description for run
VM CLI command
Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
This commit is contained in:
parent
b6b80f3abf
commit
2f4fb3a079
1 changed files with 1 additions and 1 deletions
|
@ -1085,7 +1085,7 @@ func handleRun(c *cli.Context) error {
|
||||||
}
|
}
|
||||||
if runCurrent {
|
if runCurrent {
|
||||||
if cs == nil {
|
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))
|
md := cs.Manifest.ABI.GetMethod(args[0], len(params))
|
||||||
if md == nil {
|
if md == nil {
|
||||||
|
|
Loading…
Reference in a new issue