From fc90b2de1c3b257291ccdfef346614aa2a08ac54 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Fri, 1 Dec 2017 11:33:07 -0500 Subject: [PATCH] fix dummy test --- example/dummy/dummy_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/dummy/dummy_test.go b/example/dummy/dummy_test.go index ec4d2e33d..bfe9ef7a9 100644 --- a/example/dummy/dummy_test.go +++ b/example/dummy/dummy_test.go @@ -95,7 +95,7 @@ func TestPersistentDummyInfo(t *testing.T) { header := &types.Header{ Height: int64(height), } - dummy.BeginBlock(types.RequestBeginBlock{hash, header}) + dummy.BeginBlock(types.RequestBeginBlock{hash, header, nil, nil}) dummy.EndBlock(types.RequestEndBlock{header.Height}) dummy.Commit() @@ -179,7 +179,7 @@ func makeApplyBlock(t *testing.T, dummy types.Application, heightInt int, diff [ Height: height, } - dummy.BeginBlock(types.RequestBeginBlock{hash, header}) + dummy.BeginBlock(types.RequestBeginBlock{hash, header, nil, nil}) for _, tx := range txs { if r := dummy.DeliverTx(tx); r.IsErr() { t.Fatal(r)