This commit is contained in:
gzuhlwang 2019-03-18 00:35:58 +08:00 committed by Preston Van Loon
parent 7f3d8a7e7b
commit bb1389e362

View File

@ -21,7 +21,7 @@ var (
// ActivatedValidators is a mapping that tracks epoch to activated validators indexes.
// Where key is epoch, value is a list of activated validator indexes.
ActivatedValidators = make(map[uint64][]uint64)
// ExitedValidators is a mapping that tracks epoch to excited validators indexes.
// ExitedValidators is a mapping that tracks epoch to exited validators indexes.
// Where key is epoch, value is a list of exited validator indexes.
ExitedValidators = make(map[uint64][]uint64)
)