consensus: include evidence in proposed block parts. fixes #2050

This commit is contained in:
Ethan Buchman
2018-07-24 21:58:39 -04:00
parent 359898dcac
commit 6046b99197
6 changed files with 49 additions and 39 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ func makeTxs(height int64) (txs []types.Tx) {
}
func makeBlock(height int64, state sm.State) *types.Block {
block, _ := state.MakeBlock(height, makeTxs(height), new(types.Commit))
block, _ := state.MakeBlock(height, makeTxs(height), new(types.Commit), nil)
return block
}