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