mirror of
https://github.com/fluencelabs/dashboard
synced 2024-12-04 15:20:21 +00:00
Exclude testnet from relays, generate random relayIdx (#33)
This commit is contained in:
parent
f2d182c597
commit
82c9198fb1
@ -29,9 +29,11 @@ import { askAllAndSend, getAll } from './_aqua/app';
|
||||
|
||||
const defaultNetworkName = 'testNet + krasnodar';
|
||||
|
||||
const relays = [...krasnodar, ...stage];
|
||||
|
||||
const defaultEnv = {
|
||||
relays: [...testNet, ...krasnodar, ...stage],
|
||||
relayIdx: 10,
|
||||
relays,
|
||||
relayIdx: Math.floor(Math.random() * relays.length),
|
||||
logLevel: 'error',
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user