3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-14 11:15:51 +00:00

Suppress noisy log line that is duplicated by LocalTransactionSigner.

This commit is contained in:
Mike Hearn 2014-10-07 16:14:06 +02:00
parent 38344465f0
commit 059b2679a7

View File

@ -3470,7 +3470,7 @@ public class Wallet extends BaseTaggableObject implements Serializable, BlockCha
for (int i = 0; i < numInputs; i++) {
TransactionInput txIn = tx.getInput(i);
if (txIn.getConnectedOutput() == null) {
log.warn("Missing connected output, assuming input {} is already signed.", i);
// Missing connected output, assuming already signed.
continue;
}