From f59e6ce118ebf2eed8ece95e674dafa098f100fd Mon Sep 17 00:00:00 2001 From: Sean Gilligan Date: Tue, 18 Feb 2025 13:53:30 -0800 Subject: [PATCH] TransactionBroadcast: fix minor typos in comment --- .../src/main/java/org/bitcoinj/core/TransactionBroadcast.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java b/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java index a4efd9bf8..99b5ea6fd 100644 --- a/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java +++ b/core/src/main/java/org/bitcoinj/core/TransactionBroadcast.java @@ -169,9 +169,9 @@ public class TransactionBroadcast { // thread. // We will send the tx simultaneously to half the connected peers and wait to hear back from at least half - // of the other half, i.e., with 4 peers connected we will send the tx to 2 randomly chosen peers, and then + // of the other half, e.g., with 4 peers connected we will send the tx to 2 randomly chosen peers, and then // wait for it to show up on one of the other two. This will be taken as sign of network acceptance. As can - // be seen, 4 peers is probably too little - it doesn't taken many broken peers for tx propagation to have + // be seen, 4 peers is probably too little - it doesn't take many broken peers for tx propagation to have // a big effect. List peers = peerGroup.getConnectedPeers(); // snapshots // Prepare to send the transaction by adding a listener that'll be called when confidence changes.