Skip to content

Commit

Permalink
keep validator eth keys for max proposal period
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed Oct 2, 2023
1 parent 9971497 commit 7c7ee02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proof_of_stake/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ pub type ValidatorConsensusKeys = crate::epoched::Epoched<
pub type ValidatorEthHotKeys = crate::epoched::Epoched<
common::PublicKey,
crate::epoched::OffsetPipelineLen,
crate::epoched::OffsetDefaultNumPastEpochs,
crate::epoched::OffsetMaxProposalPeriodPlus,
>;

/// Epoched validator's eth cold key.
pub type ValidatorEthColdKeys = crate::epoched::Epoched<
common::PublicKey,
crate::epoched::OffsetPipelineLen,
crate::epoched::OffsetDefaultNumPastEpochs,
crate::epoched::OffsetMaxProposalPeriodPlus,
>;

/// Epoched validator's state.
Expand Down

0 comments on commit 7c7ee02

Please sign in to comment.