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
## Motivation
`finalize-committee` currently revokes all but the latest epoch. But
sometimes we may want to keep more than one epoch.
## Proposal
Change this to `revoke-epochs <EPOCH>` and revoke only up to the
specified one.
## Test Plan
CI; tests were updated.
## Release Plan
- Nothing to do / These changes follow the usual release cycle.
## Links
- Closes#3948
- [reviewer
checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
@@ -86,7 +86,7 @@ A Byzantine-fault tolerant sidechain with low-latency finality and high throughp
86
86
*`sync-validator` — Synchronizes a validator with the local state of chains
87
87
*`set-validator` — Add or modify a validator (admin only)
88
88
*`remove-validator` — Remove a validator (admin only)
89
-
*`finalize-committee` — Deprecates all committees except the last one
89
+
*`revoke-epochs` — Deprecates all committees up to and including the specified one
90
90
*`resource-control-policy` — View or update the resource control policy
91
91
*`create-genesis-config` — Create genesis configuration for a Linera deployment. Create initial user chains and print information to be used for initialization of validator setup. This will also create an initial wallet for the owner of the initial "root" chains
92
92
*`watch` — Watch the network for notifications
@@ -461,11 +461,15 @@ Remove a validator (admin only)
461
461
462
462
463
463
464
-
## `linera finalize-committee`
464
+
## `linera revoke-epochs`
465
465
466
-
Deprecates all committees except the last one
466
+
Deprecates all committees up to and including the specified one
0 commit comments