Update specs/_features/eip6110/validator.md

Co-authored-by: Hsiao-Wei Wang <hsiaowei.eth@gmail.com>
This commit is contained in:
Danny Ryan 2023-03-14 11:22:12 -06:00 committed by GitHub
parent 0da79bdbfd
commit 0ae18d86e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -38,5 +38,5 @@ def get_eth1_deposit_count(state: BeaconState) -> uint64:
if state.eth1_deposit_index < eth1_deposit_index_limit:
return min(MAX_DEPOSITS, eth1_deposit_index_limit - state.eth1_deposit_index)
else:
return 0
return uint64(0)
```