mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-13 21:31:23 +00:00
Channel bytes are spelled fully, "XXXChannel"
This commit is contained in:
@ -641,12 +641,12 @@ func (cs *ConsensusState) RunActionPropose(height uint, round uint) {
|
||||
return
|
||||
}
|
||||
|
||||
blockParts = types.NewPartSetFromData(binary.BinaryBytes(block))
|
||||
blockParts = block.MakePartSet()
|
||||
pol = cs.LockedPOL // If exists, is a PoUnlock.
|
||||
}
|
||||
|
||||
if pol != nil {
|
||||
polParts = types.NewPartSetFromData(binary.BinaryBytes(pol))
|
||||
polParts = pol.MakePartSet()
|
||||
}
|
||||
|
||||
// Make proposal
|
||||
|
Reference in New Issue
Block a user