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
where amount is the token amount redelegated from src_validator to dest_validator, such that the tokens started contributing to the src_validator's voting power at bond_start, and redel_start is the epoch in which the redelegation tx is processed.
The redel_start implies that the redelegated tokens start contributing to the dest_validator's voting power at redel_start + pipeline_len, which in other data in storage is referred to as redel_end. In all other similarly structured data, the redel_end epoch is stored rather than the redel_start epoch. For the sake of consistency in docs and readability, we should change this data to also use the redel_end epoch.
The text was updated successfully, but these errors were encountered:
Currently, a validator's outgoing redelegations data is a nested map of the structure:
src_validator -> dest_validator -> bond_start -> redel_start -> amount
where
amount
is the token amount redelegated fromsrc_validator
todest_validator
, such that the tokens started contributing to thesrc_validator
's voting power atbond_start
, andredel_start
is the epoch in which the redelegation tx is processed.The
redel_start
implies that the redelegated tokens start contributing to thedest_validator
's voting power atredel_start + pipeline_len
, which in other data in storage is referred to asredel_end
. In all other similarly structured data, theredel_end
epoch is stored rather than theredel_start
epoch. For the sake of consistency in docs and readability, we should change this data to also use theredel_end
epoch.The text was updated successfully, but these errors were encountered: