Universal flags need to be added to tfAccountSetMask

This commit is contained in:
JoelKatz
2014-04-16 16:17:53 -07:00
committed by Vinnie Falco
parent 360db3c7ca
commit 6ae329f4a6

View File

@@ -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);