rebase subscriptionManager

This commit is contained in:
Nathan Nichols
2021-05-26 13:44:21 -05:00
parent 4340497857
commit 8d5bb85458
2 changed files with 10 additions and 1 deletions

View File

@@ -81,6 +81,15 @@ getJson(ripple::STBase const& obj)
return value.as_object(); return value.as_object();
} }
boost::json::value
getJson(Json::Value const& value)
{
boost::json::value boostValue =
boost::json::parse(value.toStyledString());
return boostValue;
}
boost::json::object boost::json::object
getJson(ripple::TxMeta const& meta) getJson(ripple::TxMeta const& meta)
{ {