tutus-consensus/prepare_response.go

9 lines
229 B
Go

package dbft
// PrepareResponse represents dBFT PrepareResponse message.
type PrepareResponse[H Hash] interface {
// PreparationHash returns the hash of PrepareRequest payload
// for this epoch.
PreparationHash() H
}