mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-23 23:20:33 +00:00
Fix merge conflicts
This commit is contained in:
@@ -152,7 +152,7 @@ isVaultPseudoAccountFrozen(
|
||||
if (auto const result = checkVaultPseudoAccountFrozenPreconditions(view, depth))
|
||||
return *result;
|
||||
|
||||
auto const issuanceSle = view.read(keylet::mptIssuance(mptShare.getMptID()));
|
||||
auto const issuanceSle = view.read(keylet::mptokenIssuance(mptShare.getMptID()));
|
||||
if (issuanceSle == nullptr)
|
||||
return false; // zero MPToken won't block deletion of MPTokenIssuance
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@ isFrozen(ReadView const& view, AccountID const& account, SLE const& mptSle, std:
|
||||
XRPL_ASSERT(mptSle.getType() == ltMPTOKEN, "xrpl::isFrozen : MPToken SLE");
|
||||
|
||||
MPTID const mptID = mptSle[sfMPTokenIssuanceID];
|
||||
auto const issuanceSle = view.read(keylet::mptIssuance(mptID));
|
||||
auto const issuanceSle = view.read(keylet::mptokenIssuance(mptID));
|
||||
|
||||
if ((issuanceSle && isGlobalFrozen(*issuanceSle)) || isIndividualFrozen(mptSle))
|
||||
return true;
|
||||
|
||||
@@ -7184,7 +7184,7 @@ private:
|
||||
BEAST_EXPECT((*ammToken)[sfMPTAmount] == 0);
|
||||
|
||||
usd.destroy();
|
||||
BEAST_EXPECT(env.le(keylet::mptIssuance(usd.issuanceID())) == nullptr);
|
||||
BEAST_EXPECT(env.le(keylet::mptokenIssuance(usd.issuanceID())) == nullptr);
|
||||
|
||||
// A Payment cannot cross this empty AMM because BookStep skips AMMs
|
||||
// with zero LPTokenBalance. Probe the same ZeroIfFrozen balance read
|
||||
|
||||
Reference in New Issue
Block a user