From c6e0582729554c13083cf86ef502a901166d1517 Mon Sep 17 00:00:00 2001 From: Vahe Hovhannisyan Date: Mon, 14 Sep 2015 16:53:31 -0700 Subject: [PATCH] Remote: Add LowFreeze, HighFreeze flags --- src/core/remote.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/core/remote.js b/src/core/remote.js index 3ed74b42..68baf4b0 100644 --- a/src/core/remote.js +++ b/src/core/remote.js @@ -224,14 +224,16 @@ Remote.flags = { Passive: 0x00010000, Sell: 0x00020000 // offer was placed as a sell }, - // Ripple tate + // Ripple state state: { LowReserve: 0x00010000, // entry counts toward reserve HighReserve: 0x00020000, LowAuth: 0x00040000, HighAuth: 0x00080000, LowNoRipple: 0x00100000, - HighNoRipple: 0x00200000 + HighNoRipple: 0x00200000, + LowFreeze: 0x00400000, + HighFreeze: 0x00800000 } };