From 4bca6bf6f502f33cdc593fb08d29f56e4a6d300e Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Tue, 19 Dec 2017 12:30:34 -0500 Subject: [PATCH] fix test --- state/execution_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/state/execution_test.go b/state/execution_test.go index 3080187b..379ac673 100644 --- a/state/execution_test.go +++ b/state/execution_test.go @@ -81,7 +81,7 @@ func TestBeginBlockAbsentValidators(t *testing.T) { valHash := state.Validators.Hash() block, _ := types.MakeBlock(2, chainID, makeTxs(2), state.LastBlockTotalTx, lastCommit, - prevBlockID, valHash, state.AppHash, testPartSize) + prevBlockID, valHash, state.AppHash, state.LastConsensusHash, testPartSize) _, err = ExecCommitBlock(proxyApp.Consensus(), block, log.TestingLogger(), lastValidators) require.Nil(t, err, tc.desc)