You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Closes#1809, and prepares #3004 since we will be able to match the supplied genesis state to decide whether we want to run chain initialization logic e.g. setting the genesis base rate, or fast-forward to committing the initial height block.
This PR turns `genesis::AppState` into an enum:
```rust
pub enum AppState {
Content(/* a full genesis configuration */),
Checkpoint(/* a free-form byte string e.g. an apphash, a commit hash */)
}
```
and percolate those changes across the codebase.
No description provided.
The text was updated successfully, but these errors were encountered: