diff --git a/core/src/main/java/bisq/core/network/p2p/seed/DefaultSeedNodeRepository.java b/core/src/main/java/bisq/core/network/p2p/seed/DefaultSeedNodeRepository.java index e72b074433..a79203c4fc 100644 --- a/core/src/main/java/bisq/core/network/p2p/seed/DefaultSeedNodeRepository.java +++ b/core/src/main/java/bisq/core/network/p2p/seed/DefaultSeedNodeRepository.java @@ -107,7 +107,7 @@ public class DefaultSeedNodeRepository implements SeedNodeRepository { list.add(new NodeAddress(matcher.group(1))); // Maybe better include in regex... - if (line.startsWith("localhost")) { + if (line.startsWith("localhost") || line.startsWith("bisq-seednode-")) { String[] strings = line.split(" \\(@"); String node = strings[0]; list.add(new NodeAddress(node));