mirror of
https://github.com/bisq-network/bisq.git
synced 2025-01-19 05:44:05 +01:00
Merge pull request #6917 from alvasw/support_dockerized_regtest_seednodes
Support dockerized regtest seednodes
This commit is contained in:
commit
7430fdf788
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user