Fix Pathfinder develop-merge bug.

This commit is contained in:
Gregory Tsipenyuk
2026-07-07 15:17:55 -04:00
parent c5a1bc5487
commit 1145149210

View File

@@ -815,7 +815,7 @@ Pathfinder::getPathsOut(
{
for (auto const& mpt : *mpts)
{
if (pathAsset.get<MPTID>() != mpt.getMptID() || mpt.canSend(account) ||
if (pathAsset.get<MPTID>() != mpt.getMptID() || !mpt.canSend(account) ||
bAuthRequired)
continue;
if (isDstAsset && dstAccount == getMPTIssuer(mpt))