diff --git a/environment_config.yaml b/environment_config.yaml index 9afb79b9..b51b991e 100644 --- a/environment_config.yaml +++ b/environment_config.yaml @@ -6,6 +6,6 @@ environment_config: fields: # set of fields for command version: # key name const: true # optional, default to TRUE - default: 1.4.0.3 # optional, default value for key, if not provided key will be required during command run + default: 1.4.0.4 # optional, default value for key, if not provided key will be required during command run dotenv: true # optional, default to FALSE, if this field should be added to .env file \ No newline at end of file diff --git a/lib/config.dart b/lib/config.dart index c1cb0326..936704c6 100644 --- a/lib/config.dart +++ b/lib/config.dart @@ -381,6 +381,9 @@ Make sure this folder has the same structure as Chia's GitHub repo."""); _poolPublicKey = "0x" + poolPublicKey; } + if (contents[0]["Show Hardware Info"] != null) + _showHardwareInfo = contents[0]["Show Hardware Info"]; + await saveConfig(); }