Clean up - Ledger breaking changes.

This commit is contained in:
Arthur Britto
2012-12-21 17:05:31 -08:00
parent 5f38aed8a0
commit c05d4fb559
5 changed files with 7 additions and 9 deletions

View File

@@ -62,11 +62,10 @@ const int TransactionMaxLen = 1048576;
const uint32 tfPassive = 0x00010000;
const uint32 tfOfferCreateMask = ~(tfPassive);
// Payment flags: (renumber on ledger wipe)
const uint32 tfPaymentLegacy = 0x00010000; // Left here to avoid ledger change.
// Payment flags:
const uint32 tfNoRippleDirect = 0x00010000;
const uint32 tfPartialPayment = 0x00020000;
const uint32 tfLimitQuality = 0x00040000;
const uint32 tfNoRippleDirect = 0x00080000;
const uint32 tfPaymentMask = ~(tfPartialPayment|tfLimitQuality|tfNoRippleDirect);