mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-23 15:10:34 +00:00
Fix merge conflicts
This commit is contained in:
@@ -5061,7 +5061,7 @@ public:
|
||||
|
||||
musd.pay(issuer, maker, 100);
|
||||
|
||||
auto const issuance = env.le(keylet::mptIssuance(usd.mpt()));
|
||||
auto const issuance = env.le(keylet::mptokenIssuance(usd.mpt()));
|
||||
if (!BEAST_EXPECT(issuance))
|
||||
return;
|
||||
BEAST_EXPECT(issuance->getFieldU64(sfOutstandingAmount) == 100);
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <xrpl/protocol/AccountID.h>
|
||||
#include <xrpl/protocol/MPTIssue.h>
|
||||
#include <xrpl/protocol/UintTypes.h>
|
||||
|
||||
namespace xrpl {
|
||||
|
||||
@@ -815,7 +815,7 @@ Pathfinder::getPathsOut(
|
||||
{
|
||||
for (auto const& mpt : *mpts)
|
||||
{
|
||||
if (pathAsset.get<MPTID>() != mpt.getMptID() || mpt.canSend() ||
|
||||
if (pathAsset.get<MPTID>() != mpt.getMptID() || mpt.canSend(account) ||
|
||||
bAuthRequired)
|
||||
continue;
|
||||
if (isDstAsset && dstAccount == getMPTIssuer(mpt))
|
||||
|
||||
Reference in New Issue
Block a user