mirror of
https://github.com/XRPLF/rippled.git
synced 2026-08-23 15:20:54 +00:00
feat: Add MPT support to DEX (#5285)
This commit is contained in:
committed by
GitHub
parent
6d1a5be8d2
commit
dfcad69155
@@ -30,11 +30,11 @@ paths::operator()(Env& env, JTx& jt) const
|
||||
}
|
||||
|
||||
Pathfinder pf(
|
||||
std::make_shared<RippleLineCache>(env.current(), env.app().getJournal("RippleLineCache")),
|
||||
std::make_shared<AssetCache>(env.current(), env.app().getJournal("AssetCache")),
|
||||
from,
|
||||
to,
|
||||
in_.currency,
|
||||
in_.account,
|
||||
in_,
|
||||
in_.getIssuer(),
|
||||
amount,
|
||||
std::nullopt,
|
||||
domain,
|
||||
@@ -44,7 +44,7 @@ paths::operator()(Env& env, JTx& jt) const
|
||||
|
||||
STPath fp;
|
||||
pf.computePathRanks(limit_);
|
||||
auto const found = pf.getBestPaths(limit_, fp, {}, in_.account);
|
||||
auto const found = pf.getBestPaths(limit_, fp, {}, in_.getIssuer());
|
||||
|
||||
// VFALCO TODO API to allow caller to examine the STPathSet
|
||||
// VFALCO isDefault should be renamed to empty()
|
||||
@@ -54,6 +54,11 @@ paths::operator()(Env& env, JTx& jt) const
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
path::path(STPath const& p)
|
||||
{
|
||||
jv_ = p.getJson(JsonOptions::none);
|
||||
}
|
||||
|
||||
Json::Value&
|
||||
path::create()
|
||||
{
|
||||
@@ -77,16 +82,20 @@ void
|
||||
path::append_one(IOU const& iou)
|
||||
{
|
||||
auto& jv = create();
|
||||
jv["currency"] = to_string(iou.issue().currency);
|
||||
jv["account"] = toBase58(iou.issue().account);
|
||||
jv["currency"] = to_string(iou.currency);
|
||||
jv["account"] = toBase58(iou.account);
|
||||
}
|
||||
|
||||
void
|
||||
path::append_one(BookSpec const& book)
|
||||
{
|
||||
auto& jv = create();
|
||||
jv["currency"] = to_string(book.currency);
|
||||
jv["issuer"] = toBase58(book.account);
|
||||
book.asset.visit(
|
||||
[&](Issue const& issue) {
|
||||
jv["currency"] = to_string(issue.currency);
|
||||
jv["issuer"] = toBase58(issue.account);
|
||||
},
|
||||
[&](MPTIssue const& issue) { jv["mpt_issuance_id"] = to_string(issue.getMptID()); });
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user