3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 10:15:52 +00:00

PeerGroup: fix usage of _ as identifier.

This commit is contained in:
Mike Hearn 2013-09-27 17:35:47 +02:00
parent ee206537d7
commit 88abe3faa3

View File

@ -1290,7 +1290,7 @@ public class PeerGroup extends AbstractIdleService implements TransactionBroadca
// any peer discovery source and the user just calls connectTo() once. // any peer discovery source and the user just calls connectTo() once.
if (minConnections == 1) { if (minConnections == 1) {
sendComplete.addListener(new ChannelFutureListener() { sendComplete.addListener(new ChannelFutureListener() {
public void operationComplete(ChannelFuture operation) throws Exception { public void operationComplete(ChannelFuture ignored) throws Exception {
for (Wallet wallet : wallets) { for (Wallet wallet : wallets) {
try { try {
// Assumption here is there are no dependencies of the created transaction. // Assumption here is there are no dependencies of the created transaction.