From 9d3a230974c1df44cb29cadfa207d57cf20f34cf Mon Sep 17 00:00:00 2001 From: vbuterin Date: Tue, 5 Nov 2019 10:34:04 -0800 Subject: [PATCH] Update specs/core/1_new_shards.md Co-Authored-By: Hsiao-Wei Wang --- specs/core/1_new_shards.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/core/1_new_shards.md b/specs/core/1_new_shards.md index 03b574cb2..d10578265 100644 --- a/specs/core/1_new_shards.md +++ b/specs/core/1_new_shards.md @@ -404,7 +404,7 @@ def process_attestations(state: BeaconState, block: BeaconBlock, attestations: S pending_attestations = [] # Basic validation for attestation in attestations: - assert validate_attestation(state, attestation) + validate_attestation(state, attestation) # Process crosslinks online_indices = get_online_indices(state) winners = set()