From 43676894ab01f03fe90a9b8ee3ecfbc2ec1ec4e4 Mon Sep 17 00:00:00 2001 From: terence tsao Date: Fri, 29 May 2020 16:38:11 -0700 Subject: [PATCH] Fix TestProcessBlock_PassesProcessingConditions by updating the proposer index in test --- beacon-chain/core/state/transition_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon-chain/core/state/transition_test.go b/beacon-chain/core/state/transition_test.go index 4e7c983372..0939045e08 100644 --- a/beacon-chain/core/state/transition_test.go +++ b/beacon-chain/core/state/transition_test.go @@ -550,7 +550,7 @@ func TestProcessBlock_PassesProcessingConditions(t *testing.T) { Block: ðpb.BeaconBlock{ ParentRoot: parentRoot[:], Slot: beaconState.Slot() + 1, - ProposerIndex: 13, + ProposerIndex: 2, Body: ðpb.BeaconBlockBody{ RandaoReveal: randaoReveal, ProposerSlashings: proposerSlashings,