-
Notifications
You must be signed in to change notification settings - Fork 87
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
Ab/leaf2 migration #2478
base: main
Are you sure you want to change the base?
Ab/leaf2 migration #2478
Conversation
self.migrate_anchor_leaf().await?; | ||
self.migrate_da_proposals().await?; | ||
self.migrate_vid_shares().await?; | ||
self.migrate_undecided_state().await?; | ||
self.migrate_quorum_proposals().await?; | ||
self.migrate_quorum_certificates().await |
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.
Can we gate this by versions(and the other parts we start storing the new types) so we can merge this and not worry about deploying it
async fn migrate_anchor_leaf(&self) -> anyhow::Result<()> { | ||
Ok(()) | ||
} | ||
async fn migrate_da_proposals(&self) -> anyhow::Result<()> { | ||
Ok(()) | ||
} | ||
async fn migrate_vid_shares(&self) -> anyhow::Result<()> { | ||
Ok(()) | ||
} | ||
async fn migrate_undecided_state(&self) -> anyhow::Result<()> { | ||
Ok(()) | ||
} | ||
async fn migrate_quorum_proposals(&self) -> anyhow::Result<()> { | ||
Ok(()) | ||
} | ||
async fn migrate_quorum_certificates(&self) -> anyhow::Result<()> { | ||
Ok(()) | ||
} |
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.
I think all of these should be fully implemented in the same PR
TODO: