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
chore: Remove initial height and validator set from consensus params (#1190)
Closes: #XXX
These parameters are a remnant from a very early time in Malachite's
lifespan where consensus would always start at the initial height with a
static validator set and move from height to height on its own.
These parameters have therefore not had any effect for a while, given
that it is now up to the app to tell consensus which height to start at
after receiving the `ConsensusReady` message.
As such, they can be removed without any loss of functionality.
---
### PR author checklist
#### For all contributors
- [ ] Reference a GitHub issue
- [ ] Ensure the PR title follows the [conventional
commits][conv-commits] spec
- [ ] Add a release note in [`RELEASE_NOTES.md`](/RELEASE_NOTES.md) if
the change warrants it
- [ ] Add an entry in [`BREAKING_CHANGES.md`](/BREAKING_CHANGES.md) if
the change warrants it
#### For external contributors
- [ ] Maintainers of Malachite are [allowed to push changes to the
branch][gh-edit-branch]
[conv-commits]: https://www.conventionalcommits.org/en/v1.0.0/#summary
[gh-edit-branch]:
https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/allowing-changes-to-a-pull-request-branch-created-from-a-fork#enabling-repository-maintainer-permissions-on-existing-pull-requests
Copy file name to clipboardExpand all lines: BREAKING_CHANGES.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
### `malachitebft-core-types`
6
6
7
7
- Move `SigningProvider` and `SigningProviderExt` traits into new `malachitebft-signing` crate ([#1191](https://github.com/informalsystems/malachite/pull/1191))
8
+
- Remove `initial_validator_set` and `initial_height` fields from `Params` struct ([#1190](https://github.com/circlefin/malachite/pull/1190))
0 commit comments