#include #include namespace xrpl { namespace test { namespace jtx { Json::Value offer( Account const& account, STAmount const& takerPays, STAmount const& takerGets, std::uint32_t flags) { Json::Value jv; jv[jss::Account] = account.human(); jv[jss::TakerPays] = takerPays.getJson(JsonOptions::none); jv[jss::TakerGets] = takerGets.getJson(JsonOptions::none); if (flags != 0u) jv[jss::Flags] = flags; jv[jss::TransactionType] = jss::OfferCreate; return jv; } Json::Value offer_cancel(Account const& account, std::uint32_t offerSeq) { Json::Value jv; jv[jss::Account] = account.human(); jv[jss::OfferSequence] = offerSeq; jv[jss::TransactionType] = jss::OfferCancel; return jv; } } // namespace jtx } // namespace test } // namespace xrpl