Skip to content

Commit

Permalink
fix flag bug
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnxie999 committed Nov 6, 2023
1 parent 497bc69 commit c7f945f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ripple/app/tx/impl/CFTokenIssuanceCreate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ CFTokenIssuanceCreate::doApply()
return tecDIR_FULL;

auto cftIssuance = std::make_shared<SLE>(cftIssuanceID);
(*cftIssuance)[sfFlags] = ctx_.tx.getFlags() & ~tfUniversalMask;
(*cftIssuance)[sfFlags] = ctx_.tx.getFlags() & ~tfUniversal;
(*cftIssuance)[sfIssuer] = account_;
(*cftIssuance)[sfOutstandingAmount] = 0;
(*cftIssuance)[sfOwnerNode] = *ownerNode;
Expand Down

0 comments on commit c7f945f

Please sign in to comment.