difftreelog
fix reserved field 0 in collection helpers
in: master
2 files changed
js-packages/tests/eth/api/CollectionHelpers.soldiffbeforeafterboth--- a/js-packages/tests/eth/api/CollectionHelpers.sol
+++ b/js-packages/tests/eth/api/CollectionHelpers.sol
@@ -132,8 +132,7 @@
type CollectionFlags is uint8;
library CollectionFlagsLib {
- /// Tokens in foreign collections can be transferred, but not burnt
- CollectionFlags constant foreignField = CollectionFlags.wrap(128);
+ CollectionFlags constant reservedField0 = CollectionFlags.wrap(128);
/// Supports ERC721Metadata
CollectionFlags constant erc721metadataField = CollectionFlags.wrap(64);
/// External collections can't be managed using `unique` api
pallets/unique/src/eth/stubs/CollectionHelpers.soldiffbeforeafterboth199type CollectionFlags is uint8;199type CollectionFlags is uint8;200200201library CollectionFlagsLib {201library CollectionFlagsLib {202 /// Tokens in foreign collections can be transferred, but not burnt203 CollectionFlags constant foreignField = CollectionFlags.wrap(128);202 CollectionFlags constant reservedField0 = CollectionFlags.wrap(128);204 /// Supports ERC721Metadata203 /// Supports ERC721Metadata205 CollectionFlags constant erc721metadataField = CollectionFlags.wrap(64);204 CollectionFlags constant erc721metadataField = CollectionFlags.wrap(64);206 /// External collections can't be managed using `unique` api205 /// External collections can't be managed using `unique` api