fix: paths
This commit is contained in:
parent
5daf7894f5
commit
2205d57636
|
@ -1,4 +1,4 @@
|
||||||
import NimQml
|
import NimQml, json
|
||||||
import chronicles, strutils
|
import chronicles, strutils
|
||||||
import ../../../status/types as status_types
|
import ../../../status/types as status_types
|
||||||
import ../../../status/[status, settings, accounts]
|
import ../../../status/[status, settings, accounts]
|
||||||
|
|
|
@ -76,6 +76,11 @@ proc changeNetwork*(self: AccountModel, fleetConfig: FleetConfig, network: strin
|
||||||
let networkData = networks.getElems().find((n:JsonNode) => n["id"].getStr() == network)
|
let networkData = networks.getElems().find((n:JsonNode) => n["id"].getStr() == network)
|
||||||
|
|
||||||
let updatedNodeConfig = status_accounts.getNodeConfig(fleetConfig, installationId, networkData)
|
let updatedNodeConfig = status_accounts.getNodeConfig(fleetConfig, installationId, networkData)
|
||||||
|
|
||||||
|
updatedNodeConfig["KeyStoreDir"] = newJString("./keystore")
|
||||||
|
updatedNodeConfig["LogFile"] = newJString("./geth.log")
|
||||||
|
updatedNodeConfig["ShhextConfig"]["BackupDisabledDataDir"] = newJString("./")
|
||||||
|
|
||||||
statusGoResult = status_settings.saveSetting(Setting.NodeConfig, updatedNodeConfig)
|
statusGoResult = status_settings.saveSetting(Setting.NodeConfig, updatedNodeConfig)
|
||||||
if statusGoResult.error != "":
|
if statusGoResult.error != "":
|
||||||
error "Error saving updated node config", msg=statusGoResult.error
|
error "Error saving updated node config", msg=statusGoResult.error
|
||||||
|
|
|
@ -36,8 +36,6 @@ proc getNodeConfig*(fleetConfig: FleetConfig, installationId: string, networkCon
|
||||||
result["UpstreamConfig"]["URL"] = upstreamUrl
|
result["UpstreamConfig"]["URL"] = upstreamUrl
|
||||||
result["ShhextConfig"]["InstallationID"] = newJString(installationId)
|
result["ShhextConfig"]["InstallationID"] = newJString(installationId)
|
||||||
|
|
||||||
|
|
||||||
echo $result
|
|
||||||
# TODO: commented since it's not necessary (we do the connections thru C bindings). Enable it thru an option once status-nodes are able to be configured in desktop
|
# TODO: commented since it's not necessary (we do the connections thru C bindings). Enable it thru an option once status-nodes are able to be configured in desktop
|
||||||
# result["ListenAddr"] = if existsEnv("STATUS_PORT"): newJString("0.0.0.0:" & $getEnv("STATUS_PORT")) else: newJString("0.0.0.0:30305")
|
# result["ListenAddr"] = if existsEnv("STATUS_PORT"): newJString("0.0.0.0:" & $getEnv("STATUS_PORT")) else: newJString("0.0.0.0:30305")
|
||||||
result["WakuConfig"]["BloomFilterMode"] = newJBool(bloomFilterMode)
|
result["WakuConfig"]["BloomFilterMode"] = newJBool(bloomFilterMode)
|
||||||
|
|
|
@ -125,6 +125,9 @@ proc getWakuVersion*():int =
|
||||||
|
|
||||||
proc setWakuVersion*(newVersion: int) =
|
proc setWakuVersion*(newVersion: int) =
|
||||||
let nodeConfig = getNodeConfig().parseJSON()
|
let nodeConfig = getNodeConfig().parseJSON()
|
||||||
|
nodeConfig["KeyStoreDir"] = newJString("./keystore")
|
||||||
|
nodeConfig["LogFile"] = newJString("./geth.log")
|
||||||
|
nodeConfig["ShhextConfig"]["BackupDisabledDataDir"] = newJString("./")
|
||||||
if newVersion == 1:
|
if newVersion == 1:
|
||||||
nodeConfig["WakuConfig"]["Enabled"] = newJBool(true)
|
nodeConfig["WakuConfig"]["Enabled"] = newJBool(true)
|
||||||
nodeConfig["WakuV2Config"]["Enabled"] = newJBool(false)
|
nodeConfig["WakuV2Config"]["Enabled"] = newJBool(false)
|
||||||
|
|
Loading…
Reference in New Issue