Skip to content

Commit

Permalink
Update Transaction.java
Browse files Browse the repository at this point in the history
  • Loading branch information
gwang74 committed Jun 1, 2021
1 parent a211bdf commit 11d6333
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void setConfigUrl(List<String> nodes) {

public String getNodeUrl() {
nodes = getJintumRPC();
int r = new Random().nextInt(nodes.size()) + 1;
int r = new Random().nextInt(nodes.size());
return nodes.get(r);
}

Expand Down

0 comments on commit 11d6333

Please sign in to comment.