Merge pull request #296 from ethereum/hwwhww-patch-2

Fix 'validator_index': 'uint64' -> 'uint24'
This commit is contained in:
Danny Ryan 2018-12-12 11:13:29 -06:00 committed by GitHub
commit 2a87cee15f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted
# Minimum slot for processing exit # Minimum slot for processing exit
'slot': 'uint64', 'slot': 'uint64',
# Index of the exiting validator # Index of the exiting validator
'validator_index': 'uint64', 'validator_index': 'uint24',
# Validator signature # Validator signature
'signature': '[uint384]', 'signature': '[uint384]',
} }