mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-04 21:29:48 -04:00
add missing files
This commit is contained in:
parent
c6ece486ed
commit
9ef8b42509
239 changed files with 20558 additions and 51 deletions
|
@ -0,0 +1,16 @@
|
|||
package io.bitsquare.p2p.seed;
|
||||
|
||||
import java.security.NoSuchAlgorithmException;
|
||||
|
||||
public class SeedNodeMain {
|
||||
|
||||
// args: port useLocalhost seedNodes
|
||||
// eg. 4444 true localhost:7777 localhost:8888
|
||||
// To stop enter: q
|
||||
public static void main(String[] args) throws NoSuchAlgorithmException {
|
||||
SeedNode seedNode = new SeedNode();
|
||||
seedNode.processArgs(args);
|
||||
seedNode.createAndStartP2PService();
|
||||
seedNode.listenForExitCommand();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue