diff --git a/eth2/operation_pool/src/lib.rs b/eth2/operation_pool/src/lib.rs index 3beb2f28e3..9044fc6e47 100644 --- a/eth2/operation_pool/src/lib.rs +++ b/eth2/operation_pool/src/lib.rs @@ -96,6 +96,8 @@ impl OperationPool { } /// Get a list of attestations for inclusion in a block. + /// + /// NOTE: Assumes that all attestations in the operation_pool are valid. pub fn get_attestations( &self, state: &BeaconState, @@ -125,7 +127,7 @@ impl OperationPool { verify_attestation_for_block_inclusion( state, attestation, - VerifySignatures::True, + VerifySignatures::False, spec, ) .is_ok()