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:
parent
8c2b46ea51
commit
0552acc286
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user