-
Notifications
You must be signed in to change notification settings - Fork 253
Voluntary deregistration #2209
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
base: devnet-ready
Are you sure you want to change the base?
Voluntary deregistration #2209
Changes from all commits
d69790e
1e45805
4c57621
0314ae9
6cb6b9a
e6cc8f7
ecd8941
b8e96a3
20cb50b
dfa5af8
7af9a65
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -13,6 +13,14 @@ mod events { | |||||
| NetworkAdded(NetUid, u16), | ||||||
| /// a network is removed. | ||||||
| NetworkRemoved(NetUid), | ||||||
| /// a subnet's deregistration queue entry was scheduled. | ||||||
| SubnetDeregistrationPriorityScheduled(NetUid, BlockNumberFor<T>), | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I'd be more explicit on the arg name as you cannot quickly infer from the context what this block number is for exactly.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's a type, not an argument name |
||||||
| /// a subnet was enqueued for deregistration. | ||||||
| SubnetDeregistrationPrioritySet(NetUid), | ||||||
| /// network deregistration queue entry cleared or canceled. | ||||||
| SubnetDeregistrationPriorityCleared(NetUid), | ||||||
ppolewicz marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| /// pending deregistration schedule cleared or canceled. | ||||||
| SubnetDeregistrationPriorityScheduleCleared(NetUid), | ||||||
| /// stake has been transferred from the a coldkey account onto the hotkey staking account. | ||||||
| StakeAdded( | ||||||
| T::AccountId, | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.