From 9f846eda2664e2c0e91b90507e84a16ab4ee5585 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Tue, 26 Feb 2019 16:49:17 +1300 Subject: [PATCH] Fix clippy lint --- eth2/types/src/beacon_state/builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth2/types/src/beacon_state/builder.rs b/eth2/types/src/beacon_state/builder.rs index 6258d819d..7273f3658 100644 --- a/eth2/types/src/beacon_state/builder.rs +++ b/eth2/types/src/beacon_state/builder.rs @@ -156,7 +156,7 @@ impl BeaconStateBuilder { /// Builds a valid PendingAttestation with full participation for some committee. fn committee_to_pending_attestation( state: &BeaconState, - committee: &Vec, + committee: &[usize], shard: u64, slot: Slot, spec: &ChainSpec,