Skip to content

Commit

Permalink
Merge pull request #323 from multinet-app/1000-nodes
Browse files Browse the repository at this point in the history
Increase max nodes to 1000
  • Loading branch information
JackWilb authored Aug 29, 2023
2 parents 161c7d5 + 871265c commit b465cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit b465cca

Please sign in to comment.