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

Commit

Permalink
org.ethereum.net.rlpx.discover.NodeManager::setBootNodes should be …
Browse files Browse the repository at this point in the history
…`public` and not package-private. Without setting boot nodes, the object is very difficult to use outside of the package. (#1262)
  • Loading branch information
郑泽洲 VincentZheng authored and mkalinin committed Feb 14, 2019
1 parent 580362c commit 08e89f1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public ScheduledExecutorService getPongTimer() {
return pongTimer;
}

void setBootNodes(List<Node> bootNodes) {
public void setBootNodes(List<Node> bootNodes) {
this.bootNodes = bootNodes;
}

Expand Down

0 comments on commit 08e89f1

Please sign in to comment.