#ifndef XRPL_PROTOCOL_SPONSOR_H_INCLUDED #define XRPL_PROTOCOL_SPONSOR_H_INCLUDED #include #include #include #include namespace xrpl { inline void addSerializeSponsorData(Serializer& msg, AccountID const& sponsorID, std::uint32_t const& flags) { msg.addBitString(sponsorID); msg.add32(flags); } } // namespace xrpl #endif