-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommittees
43 lines (35 loc) · 1.18 KB
/
Committees
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// app/app.go
// ...
// Транзакция для создания комитета
type CreateCommitteeTx struct {
Creator sdk.AccAddress
Members []sdk.AccAddress
}
func NewCreateCommitteeTx(creator sdk.AccAddress, members []sdk.AccAddress) CreateCommitteeTx {
return CreateCommitteeTx{
Creator: creator,
Members: members,
}
}
func (tx CreateCommitteeTx) ValidateBasic() error {
// Валидация транзакции
// ...
}
func (tx CreateCommitteeTx) GetSignBytes() []byte {
// Получение байт для подписи
// ...
}
func (tx CreateCommitteeTx) GetSigners() []sdk.AccAddress {
return []sdk.AccAddress{tx.Creator}
}
// Обработчик транзакции для создания комитета
func handleCreateCommittee(ctx sdk.Context, keeper committee.Keeper, tx CreateCommitteeTx) sdk.Result {
// Проверки и логика для обработки транзакции
// ...
// Создание комитета с помощью Keeper модуля комитетов
err := keeper.CreateCommittee(ctx, tx.Creator, tx.Members)
if err != nil {
return sdk.ErrInternal("unable to create committee").Result()
}
return sdk.Result{}
}