add RepoType#String; adjust repo parsing logic.

This commit is contained in:
Raúl Kripalani
2021-07-29 13:49:51 +01:00
parent 90427bc3af
commit 3144da86f3
2 changed files with 18 additions and 1 deletions
+15
View File
@@ -52,6 +52,21 @@ const (
Markets
)
func (t RepoType) String() string {
s := [...]string{
"__invalid__",
"FullNode",
"StorageMiner",
"Worker",
"Wallet",
"Markets",
}
if t < 0 || int(t) > len(s) {
return "__invalid__"
}
return s[t]
}
func defConfForType(t RepoType) interface{} {
switch t {
case FullNode: