3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-13 10:45:51 +00:00

Add RAISE_FEE to transaction purposes.

This commit is contained in:
Andreas Schildbach 2015-07-13 08:03:14 +02:00
parent 2483d10ad3
commit c7b2dc3ff0

View File

@ -150,8 +150,10 @@ public class Transaction extends ChildMessage implements Serializable {
/** Transaction that makes a pledge to an assurance contract. */
ASSURANCE_CONTRACT_PLEDGE,
/** Send-to-self transaction that exists just to create an output of the right size we can pledge. */
ASSURANCE_CONTRACT_STUB
// In future: de/refragmentation, privacy boosting/mixing, child-pays-for-parent fees, etc.
ASSURANCE_CONTRACT_STUB,
/** Raise fee, e.g. child-pays-for-parent. */
RAISE_FEE,
// In future: de/refragmentation, privacy boosting/mixing, etc.
}
private Purpose purpose = Purpose.UNKNOWN;