-
Notifications
You must be signed in to change notification settings - Fork 276
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
Target accounts before registration #4426
Comments
current implementation policystruct AccountId(PublicKey)
struct Domain {
accounts: Map<AccountId, Account>,
// snip
}
struct Account {
id: AccountId,
domain: DomainId,
// snip
}
backgroundIt seems unnatural to expect a |
Can't fully agree since when having all accounts in the one place we can better optimize their layout.
What about permission interaction of assets and accounts? Like suppose that we have some domain |
Indeed, it can be misimplementation to equate the domain membership and the account activation e.g. someone can stash an account to another domain and an admin of the original domain can no longer revoke permission of the account. Instead, domain (candidate) should be fixed from when the account is provisional. |
|
Originally posted by @s8sato in #4411 (comment)
The text was updated successfully, but these errors were encountered: