Skip to content

Commit

Permalink
WalletTool fix for Guava 16 changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehearn committed Apr 15, 2014
1 parent 74d6112 commit d2def04
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/src/main/java/com/google/bitcoin/tools/WalletTool.java
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,8 @@ public synchronized void onChange() {
break;

}
peers.startAsync();
if (!peers.isRunning())
peers.startAsync();
try {
latch.await();
} catch (InterruptedException e) {
Expand Down

0 comments on commit d2def04

Please sign in to comment.