Skip to content

Commit

Permalink
More technically correct
Browse files Browse the repository at this point in the history
  • Loading branch information
mhutchinson committed Dec 10, 2024
1 parent 59f7f24 commit 058d327
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions omniwitness/omniwitness.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,11 @@ const (
// OperatorConfig allows the bare minimum operator-specific configuration.
// This should only contain configuration details that are custom per-operator.
type OperatorConfig struct {
WitnessKeys []note.Signer
WitnessVerifier note.Verifier // This should verify one of the sigs from the above signers
WitnessKeys []note.Signer
// This must verify one of the sigs from the previous checkpoint. If the same
// signing keys are always used for this witness, then this must be a verifier
// for one of the signers above.
WitnessVerifier note.Verifier

// BastionAddr is the host:port of the bastion host to connect to, if any.
BastionAddr string
Expand Down

0 comments on commit 058d327

Please sign in to comment.