From 3e9556202a5535be87e2189c90330f75c5e3c014 Mon Sep 17 00:00:00 2001 From: ericsson Date: Wed, 8 Jul 2020 18:19:41 +0300 Subject: [PATCH] change `get_custody_period_for_validator()` return type to `uint64` --- specs/phase1/custody-game.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/phase1/custody-game.md b/specs/phase1/custody-game.md index b89741e03..3688442a0 100644 --- a/specs/phase1/custody-game.md +++ b/specs/phase1/custody-game.md @@ -291,7 +291,7 @@ def get_randao_epoch_for_custody_period(period: uint64, validator_index: Validat ### `get_custody_period_for_validator` ```python -def get_custody_period_for_validator(validator_index: ValidatorIndex, epoch: Epoch) -> int: +def get_custody_period_for_validator(validator_index: ValidatorIndex, epoch: Epoch) -> uint64: ''' Return the reveal period for a given validator. '''