dc4bc/fsm/types/responses/dkg_proposal.go

42 lines
1000 B
Go
Raw Normal View History

2020-08-06 17:20:13 -07:00
package responses
2020-08-21 09:21:42 -07:00
type DKGProposalPubKeysParticipantResponse []*DKGProposalPubKeysParticipantEntry
type DKGProposalPubKeysParticipantEntry struct {
ParticipantId int
Addr string
DkgPubKey []byte
}
2020-08-06 17:20:13 -07:00
type DKGProposalCommitParticipantResponse []*DKGProposalCommitParticipantEntry
type DKGProposalCommitParticipantEntry struct {
ParticipantId int
2020-08-21 09:21:42 -07:00
Addr string
DkgCommit []byte
2020-08-06 17:20:13 -07:00
}
type DKGProposalDealParticipantResponse []*DKGProposalDealParticipantEntry
type DKGProposalDealParticipantEntry struct {
ParticipantId int
2020-08-21 09:21:42 -07:00
Addr string
DkgDeal []byte
}
type DKGProposalResponseParticipantResponse []*DKGProposalResponseParticipantEntry
type DKGProposalResponseParticipantEntry struct {
ParticipantId int
Addr string
DkgResponse []byte
2020-08-06 17:20:13 -07:00
}
type DKGProposalResponsesParticipantResponse []*DKGProposalResponsesParticipantEntry
type DKGProposalResponsesParticipantEntry struct {
ParticipantId int
Title string
Responses []byte
}