-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[aip-43] Separate Concurrent Fungible Assets feature flag, for later release #11871
Conversation
Current dependencies on/for this PR: This stack of pull requests is managed by Graphite. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #11871 +/- ##
===========================================
+ Coverage 70.1% 71.2% +1.0%
===========================================
Files 2182 794 -1388
Lines 414855 182772 -232083
===========================================
- Hits 291207 130289 -160918
+ Misses 123648 52483 -71165 ☔ View full report in Codecov by Sentry. |
@@ -287,13 +291,23 @@ module std::features { | |||
/// Whether enable TokenV2 collection creation and Fungible Asset creation | |||
/// to create higher throughput concurrent variants. | |||
/// Lifetime: transient | |||
const CONCURRENT_ASSETS: u64 = 37; | |||
const CONCURRENT_TOKEN_V2: u64 = 37; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it okay to reuse the feature number 37 after deprecating CONCURRENT_ASSETS flag?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, it's safe to rename constants.
it is still the same flag (it was never enabled before), we just restrict it to gate less things (and so the rename)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clean
50babba
to
9fa8717
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✅ Forge suite
|
✅ Forge suite
|
Description
Separating token v2 and fungible asset concurrent feature enabling:
Test Plan