From 7ec75b348307280a499710ad24082dcc6dfc7963 Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Wed, 13 Aug 2014 16:11:13 +0200 Subject: [PATCH] Fix typo in comment. --- core/src/main/java/com/google/bitcoin/core/PeerGroup.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/google/bitcoin/core/PeerGroup.java b/core/src/main/java/com/google/bitcoin/core/PeerGroup.java index a85feef0..2e347915 100644 --- a/core/src/main/java/com/google/bitcoin/core/PeerGroup.java +++ b/core/src/main/java/com/google/bitcoin/core/PeerGroup.java @@ -1482,7 +1482,7 @@ public class PeerGroup extends AbstractExecutionThreadService implements Transac } }); // Keep a reference to the TransactionBroadcast object. This is important because otherwise, the entire tree - // of objects we just created would become garbage if the user doens't hold on to the returned future, and + // of objects we just created would become garbage if the user doesn't hold on to the returned future, and // eventually be collected. This in turn could result in the transaction not being committed to the wallet // at all. runningBroadcasts.add(broadcast);