Remove remaining support for redeem and issue flags.

This commit is contained in:
Arthur Britto
2012-09-03 14:37:00 -07:00
parent 74392e5929
commit dda279e5a6
2 changed files with 87 additions and 134 deletions

View File

@@ -545,15 +545,11 @@ public:
enum {
typeEnd = 0x00,
typeAccount = 0x01, // Rippling through an account (vs taking an offer).
typeRedeem = 0x04, // Redeem IOUs.
typeIssue = 0x08, // Issue IOUs.
typeCurrency = 0x10, // Currency follows.
typeIssuer = 0x20, // Issuer follows.
typeBoundary = 0xFF, // Boundary between alternate paths.
typeValidBits = (
typeAccount
| typeRedeem
| typeIssue
| typeCurrency
| typeIssuer
), // Bits that may be non-zero.