Skip to content

Commit 4644c00

Browse files
authored
Use txs from SafeGetTxsByKeys (#271)
1 parent 9e9ab8a commit 4644c00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/consensus/state.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2508,7 +2508,7 @@ func (cs *State) buildProposalBlock(height int64, header types.Header, lastCommi
25082508
cs.logger.Debug("Missing txs when trying to build block", "missing_txs", cs.blockExec.GetMissingTxs(txKeys))
25092509
return nil
25102510
}
2511-
block := cs.state.MakeBlock(height, cs.blockExec.GetTxsForKeys(txKeys), lastCommit, evidence, proposerAddress)
2511+
block := cs.state.MakeBlock(height, txs, lastCommit, evidence, proposerAddress)
25122512
block.Version = header.Version
25132513
block.Data.Txs = txs
25142514
block.DataHash = block.Data.Hash(true)

0 commit comments

Comments
 (0)