Skip to content

Commit

Permalink
Update protocol and Trusted Node HardCoded
Browse files Browse the repository at this point in the history
  • Loading branch information
kalilinuxoo7 committed Mar 28, 2018
1 parent 8562ec6 commit 7b967c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void onNodeSelected(BwktrumPeerData bwktrumPeerData) {
trustedNodes.add(bwktrumPeerData);
for (BwktrumPeerData trustedNode : trustedNodes) {
if (trustedNode.getHost().equals(KAALI_TESTNET_SERVER)) {
hosts.add("pivt.kaali.tech");
hosts.add("explorer.bulwarkcrypto.com");
} else
hosts.add(trustedNode.getHost());
}
Expand Down Expand Up @@ -122,7 +122,7 @@ public void run() {
selectionPos = i;
}
if (trustedNode.getHost().equals(KAALI_TESTNET_SERVER)){
hosts.add("pivt.kaali.tech");
hosts.add("explorer.bulwarkcrypto.com");
}else
hosts.add(trustedNode.getHost());
}
Expand Down
Binary file modified bulwarkj-core-0.14.3-12.1/bulwarkj-core-0.14.3-12.1.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions bwktrumj/src/main/java/global/BwktrumGlobalData.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

public class BwktrumGlobalData {

public static final String KAALI_TESTNET_SERVER = "node1.bulwarkcrypto.com";
public static final String KAALI_TESTNET_SERVER = "explorer.bulwarkcrypto.com";

public static final String[] TRUSTED_NODES = new String[]{"node1.bulwarkcrypto.com"};
public static final String[] TRUSTED_NODES = new String[]{"explorer.bulwarkcrypto.com"};

public static final List<BwktrumPeerData> listTrustedHosts(){
List<BwktrumPeerData> list = new ArrayList<>();
Expand Down

0 comments on commit 7b967c7

Please sign in to comment.