difftreelog
Add data fields for limited owners control
in: master
2 files changed
pallets/nft/src/lib.rsdiffbeforeafterboth185185186 // Timeouts for item types in passed blocks186 // Timeouts for item types in passed blocks187 pub sponsor_transfer_timeout: u32,187 pub sponsor_transfer_timeout: u32,188 pub owner_can_transfer: bool,189 pub owner_can_destroy: bool,188}190}189191190impl Default for CollectionLimits {192impl Default for CollectionLimits {193 account_token_ownership_limit: 10_000_000, 195 account_token_ownership_limit: 10_000_000, 194 token_limit: u32::max_value(),196 token_limit: u32::max_value(),195 sponsored_data_size: u32::max_value(), 197 sponsored_data_size: u32::max_value(), 196 sponsor_transfer_timeout: 14400 }198 sponsor_transfer_timeout: 14400,199 owner_can_transfer: true,200 owner_can_destroy: true201 }197 }202 }198}203}runtime_types.jsondiffbeforeafterboth--- a/runtime_types.json
+++ b/runtime_types.json
@@ -117,7 +117,9 @@
"AccountTokenOwnershipLimit": "u32",
"SponsoredMintSize": "u32",
"TokenLimit": "u32",
- "SponsorTimeout": "u32"
+ "SponsorTimeout": "u32",
+ "OwnerCanTransfer": "bool",
+ "OwnerCanDestroy": "bool"
},
"AccountInfo": "AccountInfoWithProviders",
"AccountInfoWithProviders": {