feat(gui): Deprioritize asbs running below 1.0.0-alpha.1 (#163)

This commit is contained in:
binarybaron 2024-11-14 17:03:09 +01:00 committed by GitHub
parent 668403e074
commit 7ebe59bc8d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ import { Multiaddr } from "multiaddr";
import semver from "semver";
import { isTestnet } from "store/config";
const MIN_ASB_VERSION = "0.13.3";
const MIN_ASB_VERSION = "1.0.0-alpha.1"
export function providerToConcatenatedMultiAddr(provider: Provider) {
return new Multiaddr(provider.multiAddr)
@ -26,4 +26,4 @@ export function isProviderOutdated(provider: ExtendedProviderStatus): boolean {
}
return true;
}
}