From aab354622f9ed2f22342aee061a38af53b6f5e57 Mon Sep 17 00:00:00 2001 From: Mayukha Vadari Date: Tue, 7 Jul 2026 23:50:18 -0400 Subject: [PATCH] change flag values --- include/xrpl/protocol/TxFlags.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/xrpl/protocol/TxFlags.h b/include/xrpl/protocol/TxFlags.h index a6f3978f96..1d4f33a39d 100644 --- a/include/xrpl/protocol/TxFlags.h +++ b/include/xrpl/protocol/TxFlags.h @@ -142,7 +142,7 @@ inline constexpr FlagValue tfUniversalMask = ~tfUniversal; TF_FLAG(tfMPTCanTrade, lsfMPTCanTrade) \ TF_FLAG(tfMPTCanTransfer, lsfMPTCanTransfer) \ TF_FLAG(tfMPTCanClawback, lsfMPTCanClawback) \ - TF_FLAG(tfMPTCanHoldConfidentialBalance, lsfMPTCanHoldConfidentialBalance), \ + TF_FLAG(tfMPTCanHoldConfidentialBalance, lsfMPTCanHoldConfidentialBalance), \ MASK_ADJ(0)) \ \ TRANSACTION(MPTokenAuthorize, \ @@ -222,14 +222,14 @@ inline constexpr FlagValue tfUniversalMask = ~tfUniversal; TF_FLAG(tfSponsorshipSetRequireSignForFee, 0x00010000) \ TF_FLAG(tfSponsorshipClearRequireSignForFee, 0x00020000) \ TF_FLAG(tfSponsorshipSetRequireSignForReserve, 0x00040000) \ - TF_FLAG(tfSponsorshipClearRequireSignForReserve, 0x00080000) \ + TF_FLAG(tfSponsorshipClearRequireSignForReserve, 0x00080000) \ TF_FLAG(tfDeleteObject, 0x00100000), \ MASK_ADJ(0)) \ \ TRANSACTION(SponsorshipTransfer, \ - TF_FLAG(tfSponsorshipEnd, 0x00000001) \ - TF_FLAG(tfSponsorshipCreate, 0x00000002) \ - TF_FLAG(tfSponsorshipReassign, 0x00000004), \ + TF_FLAG(tfSponsorshipEnd, 0x00010000) \ + TF_FLAG(tfSponsorshipCreate, 0x00020000) \ + TF_FLAG(tfSponsorshipReassign, 0x00040000), \ MASK_ADJ(0)) // clang-format on