Skip to content
This repository has been archived by the owner on Dec 5, 2020. It is now read-only.

Commit

Permalink
beta updates #5
Browse files Browse the repository at this point in the history
Updated addnode strings to only include official seeds.
  • Loading branch information
CryptoForge committed May 13, 2018
1 parent 07cab98 commit b23432a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Binary file modified SimpleWallet.v12.suo
Binary file not shown.
5 changes: 1 addition & 4 deletions SimpleWallet/api.cs
Original file line number Diff line number Diff line change
Expand Up @@ -274,10 +274,7 @@ public void checkConfig()
File.Create(filename).Close();
String rpcUser = "rpcuser=" + getRandomString(30);
String rpcPass = "rpcpassword=" + getRandomString(30);
String node = "addnode=zero.cryptoforge.cc:23801" + System.Environment.NewLine + "addnode=zero.cryptonode.cloud:23801" +
"addnode=64.237.50.236:23801" + System.Environment.NewLine + "addnode=51.255.95.53:23801" + System.Environment.NewLine + "addnode=213.239.212.246:23801" +
"addnode=188.166.2.55:23801" + System.Environment.NewLine + "addnode=151.45.45.171:23801" + System.Environment.NewLine + "addnode=83.219.38.218:23801" +
"addnode=145.239.2.43:23801" + System.Environment.NewLine + "addnode=86.31.59.86:23801";
String node = "addnode=zeroseed.cryptoforge.cc:23801" + System.Environment.NewLine + "addnode=34.236.37.74:23801";
String port = "port=23801" + System.Environment.NewLine + "rpcport=23800" + System.Environment.NewLine + "txindex=1" + System.Environment.NewLine + "server=1";
String finalStr = rpcUser + System.Environment.NewLine + rpcPass + System.Environment.NewLine + node + System.Environment.NewLine + port;
File.WriteAllText(filename, finalStr);
Expand Down

0 comments on commit b23432a

Please sign in to comment.