Merge pull request #535 from ralexstokes/fix-docstring

Remove the unnecessary double backticks on 'validator' in docstring.
This commit is contained in:
Danny Ryan 2019-01-30 20:36:43 -08:00 committed by GitHub
commit 684931bf16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1020,7 +1020,7 @@ def is_power_of_two(value: int) -> bool:
```python
def get_effective_balance(state: State, index: ValidatorIndex) -> Gwei:
"""
Return the effective balance (also known as "balance at stake") for a ``validator`` with the given ``index``.
Return the effective balance (also known as "balance at stake") for a validator with the given ``index``.
"""
return min(state.validator_balances[index], MAX_DEPOSIT_AMOUNT)
```