mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-02-20 06:18:15 +00:00
Fix randomize_state
default params
This commit is contained in:
parent
40869d6e39
commit
b0b3733243
@ -142,7 +142,7 @@ def randomize_attestation_participation(spec, state, rng=Random(8020)):
|
|||||||
randomize_epoch_participation(spec, state, spec.get_current_epoch(state), rng)
|
randomize_epoch_participation(spec, state, spec.get_current_epoch(state), rng)
|
||||||
|
|
||||||
|
|
||||||
def randomize_state(spec, state, rng=Random(8020), exit_fraction=None, slash_fraction=None):
|
def randomize_state(spec, state, rng=Random(8020), exit_fraction=0.5, slash_fraction=0.5):
|
||||||
set_some_new_deposits(spec, state, rng)
|
set_some_new_deposits(spec, state, rng)
|
||||||
exit_random_validators(spec, state, rng, fraction=exit_fraction)
|
exit_random_validators(spec, state, rng, fraction=exit_fraction)
|
||||||
slash_random_validators(spec, state, rng, fraction=slash_fraction)
|
slash_random_validators(spec, state, rng, fraction=slash_fraction)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user