SFields and formats (#5795)

This commit is contained in:
Shawn Xie
2025-10-01 13:02:11 -04:00
committed by GitHub
parent 406c26cc72
commit c3fdbc0430
8 changed files with 43 additions and 1 deletions

View File

@@ -36,6 +36,10 @@ MPTokenIssuanceCreate::preflight(PreflightContext const& ctx)
ctx.rules.enabled(featureSingleAssetVault)))
return temDISABLED;
if (ctx.tx.getFlags() & tfMPTNoConfidentialTransfer &&
!ctx.rules.enabled(featureConfidentialTransfer))
return temDISABLED;
if (auto const ret = preflight1(ctx); !isTesSuccess(ret))
return ret;