[bisq-network/bisq] No seed nodes at the beginning. (Issue #6144)

xyzmaker123 notifications at github.com
Tue Apr 12 12:51:09 CEST 2022


> it seems to have failed to read the resource file, which is very weird.

According to  [this article](https://github.com/bisq-network/bisq/blob/35ede06037dba8df57ed36f5fb946d3094fbf227/core/src/main/java/bisq/core/network/p2p/seed/DefaultSeedNodeRepository.java#L92) there is difference how `ClassLoader` vs `Class` handles file name.

There is a chance that change in [this line](https://github.com/bisq-network/bisq/blob/35ede06037dba8df57ed36f5fb946d3094fbf227/core/src/main/java/bisq/core/network/p2p/seed/DefaultSeedNodeRepository.java#L92) could fix issue:

```
DefaultSeedNodeRepository.class.getClassLoader().getResourceAsStream(...)
```
to
```
DefaultSeedNodeRepository.class.getResourceAsStream(...)
```

-- 
Reply to this email directly or view it on GitHub:
https://github.com/bisq-network/bisq/issues/6144#issuecomment-1096565153
You are receiving this because you are subscribed to this thread.

Message ID: <bisq-network/bisq/issues/6144/1096565153 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.bisq.network/pipermail/bisq-github/attachments/20220412/935497a6/attachment.htm>


More information about the bisq-github mailing list