mirror of
https://github.com/tendermint/tendermint.git
synced 2026-09-25 01:14:28 +00:00
add an explicit field for included transactions
This commit is contained in:
@@ -160,8 +160,8 @@ func (blockExec *BlockExecutor) CreateProposalBlock(
|
||||
blockExec.logger.Error("error adding tx to the mempool", "error", err, "tx hash", atx.Hash())
|
||||
}
|
||||
}
|
||||
ftxs := append(txrSet.GetAddedTxs(), txrSet.GetUnmodifiedTxs()...)
|
||||
return state.MakeBlock(height, ftxs, commit, evidence, proposerAddr), nil
|
||||
itxs := txrSet.GetIncludedTxs()
|
||||
return state.MakeBlock(height, itxs, commit, evidence, proposerAddr), nil
|
||||
}
|
||||
|
||||
func (blockExec *BlockExecutor) ProcessProposal(
|
||||
|
||||
Reference in New Issue
Block a user