From 6ae329f4a67ca8420aa2fb6dab87b0b7c332ad2d Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 16 Apr 2014 16:17:53 -0700 Subject: [PATCH] Universal flags need to be added to tfAccountSetMask --- src/ripple_data/protocol/TxFlags.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ripple_data/protocol/TxFlags.h b/src/ripple_data/protocol/TxFlags.h index a71f5d69b..c6bcf3729 100644 --- a/src/ripple_data/protocol/TxFlags.h +++ b/src/ripple_data/protocol/TxFlags.h @@ -53,7 +53,7 @@ const std::uint32_t tfRequireAuth = 0x00040000; const std::uint32_t tfOptionalAuth = 0x00080000; const std::uint32_t tfDisallowXRP = 0x00100000; const std::uint32_t tfAllowXRP = 0x00200000; -const std::uint32_t tfAccountSetMask = ~ (TxFlag::requireDestTag | tfOptionalDestTag +const std::uint32_t tfAccountSetMask = ~ (tfUniversal | TxFlag::requireDestTag | tfOptionalDestTag | tfRequireAuth | tfOptionalAuth | tfDisallowXRP | tfAllowXRP);