2020-11-18 19:53:52 +00:00
|
|
|
package types
|
2020-10-20 18:18:36 +00:00
|
|
|
|
2020-11-15 13:46:58 +00:00
|
|
|
import (
|
2021-06-08 21:30:23 +00:00
|
|
|
types2 "github.com/Secured-Finance/dione/blockchain/types"
|
2020-11-15 13:46:58 +00:00
|
|
|
)
|
|
|
|
|
2021-06-08 21:30:23 +00:00
|
|
|
type PrePrepareMessage struct {
|
|
|
|
Block *types2.Block
|
|
|
|
}
|
2020-11-15 13:46:58 +00:00
|
|
|
|
2021-06-08 21:30:23 +00:00
|
|
|
type PrepareMessage struct {
|
|
|
|
Blockhash []byte
|
|
|
|
Signature []byte
|
2020-10-20 18:18:36 +00:00
|
|
|
}
|
2021-06-08 21:30:23 +00:00
|
|
|
|
|
|
|
type CommitMessage PrepareMessage
|