From cfb6dfedf981715224b2930cd17baf322dbc1606 Mon Sep 17 00:00:00 2001 From: Denis Angell Date: Tue, 14 Feb 2023 14:54:59 -0500 Subject: [PATCH] add ticket seq to `uritoken` txs --- src/ripple/protocol/impl/TxFormats.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ripple/protocol/impl/TxFormats.cpp b/src/ripple/protocol/impl/TxFormats.cpp index c8e03c4b9..926464965 100644 --- a/src/ripple/protocol/impl/TxFormats.cpp +++ b/src/ripple/protocol/impl/TxFormats.cpp @@ -367,6 +367,7 @@ TxFormats::TxFormats() { {sfURI, soeREQUIRED}, {sfDigest, soeOPTIONAL}, + {sfTicketSequence, soeOPTIONAL}, }, commonFields); @@ -374,6 +375,7 @@ TxFormats::TxFormats() ttURITOKEN_BURN, { {sfURITokenID, soeREQUIRED}, + {sfTicketSequence, soeOPTIONAL}, }, commonFields); @@ -382,6 +384,7 @@ TxFormats::TxFormats() { {sfURITokenID, soeREQUIRED}, {sfAmount, soeREQUIRED}, + {sfTicketSequence, soeOPTIONAL}, }, commonFields); @@ -391,6 +394,7 @@ TxFormats::TxFormats() {sfURITokenID, soeREQUIRED}, {sfAmount, soeREQUIRED}, {sfDestination, soeOPTIONAL}, + {sfTicketSequence, soeOPTIONAL}, }, commonFields); @@ -398,6 +402,7 @@ TxFormats::TxFormats() ttURITOKEN_CANCEL_SELL_OFFER, { {sfURITokenID, soeREQUIRED}, + {sfTicketSequence, soeOPTIONAL}, }, commonFields); }