diff options
Diffstat (limited to 'core/utils/round-based-config.go')
-rw-r--r-- | core/utils/round-based-config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/utils/round-based-config.go b/core/utils/round-based-config.go index 3219a13..4c83d04 100644 --- a/core/utils/round-based-config.go +++ b/core/utils/round-based-config.go @@ -90,7 +90,7 @@ func (c *RoundBasedConfig) RoundEndHeight() uint64 { return c.roundEndHeight } -// AppendTo a config in previous round. +// AppendTo a config from previous round. func (c *RoundBasedConfig) AppendTo(other RoundBasedConfig) { if c.roundID != other.roundID+1 { panic(fmt.Errorf("round IDs of configs not continuous: %d %d", |