Minor tweak to unburnable NFT

This commit is contained in:
ddawson
2023-02-24 11:07:34 -08:00
parent c7dde5e5f8
commit c78df1b90a

View File

@@ -567,7 +567,7 @@ Amendment `fixNonFungibleTokensV1_2` is a combination of bug fixes that have bee
**Fix Unburnable NFT**
Currently, an NFT with the `lsfBurnable` flag enabled cannot be burned when it has over 500 offers. To remove this restriction, this change deletes exactly 500 offers upon burning the NFT, leaving any remaining offers untouched.
Currently, an NFT cannot be burned when it has over 500 offers. To remove this restriction, this change deletes exactly 500 offers upon burning the NFT, leaving any remaining offers untouched. This addresses a concern where the issuer account cannot burn an NFT that has enabled the `lsfBurnable` flag, due to the exceeding number of offers.
See [PR 4346](https://github.com/XRPLF/rippled/pull/4346).