You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: utils/utils.go
+3-3
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,9 @@ const (
22
22
)
23
23
24
24
var (
25
-
ErrEmptyExecPath=errors.New("avalanche exec is not defined")
26
-
ErrNotExists=errors.New("avalanche exec not exists")
27
-
ErrNotExistsPlugin=errors.New("plugin exec not exists")
25
+
ErrEmptyExecPath=errors.New("the path to the avalanchego executable is not defined. please make sure to either set the AVALANCHEGO_EXEC_PATH environment variable or pass the path with the --avalanchego-path flag")
26
+
ErrNotExists=errors.New("the avalanchego executable does not exists at the provided path")
27
+
ErrNotExistsPlugin=errors.New("the vm plugin does not exists at the provided path. please check if the plugin path is set correctly in the AVALANCHEGO_PLUGIN_PATH environment variable or the --plugin-dir flag and if the plugin binary is located there")
28
28
ErrorNoNetworkIDKey=fmt.Errorf("couldn't find key %q in genesis", genesisNetworkIDKey)
0 commit comments