ParamSpace is a distinct, isolated category within the overarching Params structure
| 31 | |
| 32 | // ParamSpace is a distinct, isolated category within the overarching Params structure |
| 33 | type ParamSpace interface { |
| 34 | Check() lib.ErrorI |
| 35 | SetString(paramName string, value string) lib.ErrorI // SetString() update a string parameter in the structure |
| 36 | SetUint64(paramName string, value uint64) lib.ErrorI // SetUint64() update a uint64 parameter in the structure |
| 37 | } |
| 38 | |
| 39 | // DefaultParams() returns the developer set params |
| 40 | func DefaultParams() *Params { |
no outgoing calls
no test coverage detected