work in progress test improvements

This commit is contained in:
protolambda 2020-02-20 11:34:37 -08:00
parent c1076097c3
commit aa451778f9
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ def default_balances(spec):
Helper method to create a series of default balances. Helper method to create a series of default balances.
Usage: `@with_custom_state(balances_fn=default_balances, ...)` Usage: `@with_custom_state(balances_fn=default_balances, ...)`
""" """
num_validators = spec.SLOTS_PER_EPOCH * 256 num_validators = spec.SLOTS_PER_EPOCH * 8
return [spec.MAX_EFFECTIVE_BALANCE] * num_validators return [spec.MAX_EFFECTIVE_BALANCE] * num_validators