test: use shards.test fleet as default
This commit is contained in:
parent
942482fe99
commit
ce49b55014
|
@ -145,7 +145,8 @@ var NODE_CONFIG* = %* {
|
||||||
"Enabled": true
|
"Enabled": true
|
||||||
},
|
},
|
||||||
"ClusterConfig": {
|
"ClusterConfig": {
|
||||||
"Enabled": true
|
"Enabled": true,
|
||||||
|
"ClusterID": 16
|
||||||
},
|
},
|
||||||
"DataDir": "./ethereum/mainnet",
|
"DataDir": "./ethereum/mainnet",
|
||||||
"EnableNTPSync": true,
|
"EnableNTPSync": true,
|
||||||
|
@ -221,6 +222,7 @@ var NODE_CONFIG* = %* {
|
||||||
"AutoUpdate": true,
|
"AutoUpdate": true,
|
||||||
"Rendezvous": true,
|
"Rendezvous": true,
|
||||||
"EnableFilterFullNode": true,
|
"EnableFilterFullNode": true,
|
||||||
|
"UseShardAsDefaultTopic": true,
|
||||||
},
|
},
|
||||||
"WalletConfig": {
|
"WalletConfig": {
|
||||||
"Enabled": true,
|
"Enabled": true,
|
||||||
|
|
|
@ -314,8 +314,8 @@ QtObject:
|
||||||
return self.prepareAccountSettingsJsonObject(self.importedAccount, installationId, displayName)
|
return self.prepareAccountSettingsJsonObject(self.importedAccount, installationId, displayName)
|
||||||
|
|
||||||
proc getDefaultNodeConfig*(self: Service, installationId: string, recoverAccount: bool): JsonNode =
|
proc getDefaultNodeConfig*(self: Service, installationId: string, recoverAccount: bool): JsonNode =
|
||||||
let fleet = Fleet.StatusProd
|
let fleet = Fleet.ShardsTest
|
||||||
let dnsDiscoveryURL = "enrtree://AL65EKLJAUXKKPG43HVTML5EFFWEZ7L4LOKTLZCLJASG4DSESQZEC@prod.status.nodes.status.im"
|
let dnsDiscoveryURL = "enrtree://AMOJVZX4V6EXP7NTJPMAYJYST2QP6AJXYW76IU6VGJS7UVSNDYZG4@boot.test.shards.nodes.status.im"
|
||||||
|
|
||||||
result = NODE_CONFIG.copy()
|
result = NODE_CONFIG.copy()
|
||||||
result["ClusterConfig"]["Fleet"] = newJString($fleet)
|
result["ClusterConfig"]["Fleet"] = newJString($fleet)
|
||||||
|
|
|
@ -18,7 +18,7 @@ export stickers_dto
|
||||||
# Default values:
|
# Default values:
|
||||||
const DEFAULT_CURRENCY* = "USD"
|
const DEFAULT_CURRENCY* = "USD"
|
||||||
const DEFAULT_TELEMETRY_SERVER_URL* = "https://telemetry.status.im"
|
const DEFAULT_TELEMETRY_SERVER_URL* = "https://telemetry.status.im"
|
||||||
const DEFAULT_FLEET* = $Fleet.StatusProd
|
const DEFAULT_FLEET* = $Fleet.ShardsTest
|
||||||
|
|
||||||
# Signals:
|
# Signals:
|
||||||
const SIGNAL_CURRENCY_UPDATED* = "currencyUpdated"
|
const SIGNAL_CURRENCY_UPDATED* = "currencyUpdated"
|
||||||
|
|
Loading…
Reference in New Issue