Add fill or kill support.

This commit is contained in:
Arthur Britto
2013-03-06 01:22:35 -08:00
parent 64994268d3
commit f47bf56ac8
3 changed files with 15 additions and 1 deletions

View File

@@ -69,7 +69,8 @@ const uint32 tfAccountSetMask = ~(tfRequireDestTag|tfOptionalDestTag|tfRequireA
// OfferCreate flags:
const uint32 tfPassive = 0x00010000;
const uint32 tfImmediateOrCancel = 0x00020000;
const uint32 tfOfferCreateMask = ~(tfPassive|tfImmediateOrCancel);
const uint32 tfFillOrKill = 0x00040000;
const uint32 tfOfferCreateMask = ~(tfPassive|tfImmediateOrCancel|tfFillOrKill);
// Payment flags:
const uint32 tfNoRippleDirect = 0x00010000;