mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-25 15:10:18 +01:00
PeerGroup: fix usage of _ as identifier.
This commit is contained in:
parent
ee206537d7
commit
88abe3faa3
1 changed files with 1 additions and 1 deletions
|
@ -1290,7 +1290,7 @@ public class PeerGroup extends AbstractIdleService implements TransactionBroadca
|
|||
// any peer discovery source and the user just calls connectTo() once.
|
||||
if (minConnections == 1) {
|
||||
sendComplete.addListener(new ChannelFutureListener() {
|
||||
public void operationComplete(ChannelFuture operation) throws Exception {
|
||||
public void operationComplete(ChannelFuture ignored) throws Exception {
|
||||
for (Wallet wallet : wallets) {
|
||||
try {
|
||||
// Assumption here is there are no dependencies of the created transaction.
|
||||
|
|
Loading…
Add table
Reference in a new issue