Use txOutputType = TxOutputType.UNDEFINED; instead of null

This commit is contained in:
Manfred Karrer 2017-07-11 20:45:33 +02:00
parent ec3f610a5b
commit c76a4ac898

View File

@ -76,7 +76,7 @@ public class TxOutput implements PersistablePayload {
public void reset() { public void reset() {
isUnspent = false; isUnspent = false;
isVerified = false; isVerified = false;
txOutputType = null; txOutputType = TxOutputType.UNDEFINED;
spentInfo = null; spentInfo = null;
} }