fix ui address bug and streamline install flow

This commit is contained in:
Matt Hill
2021-09-08 21:51:01 -06:00
committed by Aiden McClelland
parent 45d945db2e
commit c5585f7f35
12 changed files with 78 additions and 82 deletions

View File

@@ -366,7 +366,7 @@ export module Mock {
rpc: {
name: 'RPC interface',
description: 'Good for connecting to your node at a distance.',
ui: true,
ui: false,
'tor-config': {
'port-mapping': { },
},

View File

@@ -77,7 +77,6 @@ export class MockApiService extends ApiService {
await pauseFor(2000)
let entries
if (Math.random() < .2) {
console.log('last page')
entries = Mock.ServerLogs
} else {
const arrLength = params.limit ? Math.ceil(params.limit / Mock.ServerLogs.length) : 10
@@ -324,7 +323,6 @@ export class MockApiService extends ApiService {
await pauseFor(2000)
let entries
if (Math.random() < .2) {
console.log('last page')
entries = Mock.PackageLogs
} else {
const arrLength = params.limit ? Math.ceil(params.limit / Mock.PackageLogs.length) : 10