From 871265c9999bda330a9e85d5fe198eaf0f010039 Mon Sep 17 00:00:00 2001 From: Jack Wilburn Date: Tue, 29 Aug 2023 11:17:59 -0600 Subject: [PATCH] Increase max nodes to 1000 --- src/store/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.ts b/src/store/index.ts index 89f41d6..0f3a211 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -194,7 +194,7 @@ export const useStore = defineStore('store', () => { } // Check network size - if (networkRequest.node_count > 300) { + if (networkRequest.node_count > 1000) { loadError.value = { message: 'The network you are loading is too large', href: 'https://multinet.app',