3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-31 07:12:17 +00:00

Lower logging level for unrecognized script outputs.

This commit is contained in:
Mike Hearn 2012-02-10 15:46:35 +01:00
parent 8c2b46ea51
commit 0552acc286

View File

@ -194,7 +194,8 @@ public class TransactionOutput extends ChildMessage implements Serializable {
byte[] pubkeyHash = getScriptPubKey().getPubKeyHash();
return wallet.isPubKeyHashMine(pubkeyHash);
} catch (ScriptException e) {
log.error("Could not parse tx output script: {}", e.toString());
// Just means we didn't understand the output of this transaction: ignore it.
log.debug("Could not parse tx output script: {}", e.toString());
return false;
}
}