From 706ec7d5bc4710306d9a18f264c20cbb002e69a9 Mon Sep 17 00:00:00 2001 From: Daniil Date: Tue, 6 Oct 2020 15:36:45 +0300 Subject: [PATCH] done --- src/stores/SettingsStore.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stores/SettingsStore.ts b/src/stores/SettingsStore.ts index a0bdf1dd..ece547f3 100644 --- a/src/stores/SettingsStore.ts +++ b/src/stores/SettingsStore.ts @@ -27,8 +27,8 @@ export interface IImportedData { class SettingsStore extends SubStore { systemNodes: Node[] = [ // new Node({...NETWORKS.STAGENET, system: true}), - new Node({...NETWORKS.TESTNET, system: true}), - new Node({...NETWORKS.MAINNET, system: true}) + new Node({...NETWORKS.MAINNET, system: true}), + new Node({...NETWORKS.TESTNET, system: true}) ]; @observable nodeTimeout = 60000;