9 lines
221 B
Go
9 lines
221 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
|
|
}
|