forked from lino-network/lino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
msg.go
72 lines (58 loc) · 1.82 KB
/
msg.go
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package infra
// nolint
import (
"fmt"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/lino-network/lino/types"
)
var _ types.Msg = ProviderReportMsg{}
// ProviderReportMsg - infra provider report infra usage to blockchain
type ProviderReportMsg struct {
Username types.AccountKey `json:"username"`
Usage int64 `json:"usage"`
}
//----------------------------------------
// ReportMsg Msg Implementations
// NewProviderReportMsg - new ProviderReportMsg
func NewProviderReportMsg(provider string, usage int64) ProviderReportMsg {
return ProviderReportMsg{
Username: types.AccountKey(provider),
Usage: usage,
}
}
// Type - implements sdk.Msg
func (msg ProviderReportMsg) Type() string { return types.InfraRouterName } // TODO: "account/register"
// ValidateBasic - implements sdk.Msg
func (msg ProviderReportMsg) ValidateBasic() sdk.Error {
if len(msg.Username) < types.MinimumUsernameLength ||
len(msg.Username) > types.MaximumUsernameLength {
return ErrInvalidUsername()
}
if msg.Usage <= 0 {
return ErrInvalidUsage()
}
return nil
}
func (msg ProviderReportMsg) String() string {
return fmt.Sprintf("ProviderReportMsg{Username:%v, Usage:%v}", msg.Username, msg.Usage)
}
// GetPermission - implements types.Msg
func (msg ProviderReportMsg) GetPermission() types.Permission {
return types.TransactionPermission
}
// GetSignBytes - implements sdk.Msg
func (msg ProviderReportMsg) GetSignBytes() []byte {
b, err := msgCdc.MarshalJSON(msg) // XXX: ensure some canonical form
if err != nil {
panic(err)
}
return b
}
// GetSigners - implements sdk.Msg
func (msg ProviderReportMsg) GetSigners() []sdk.AccAddress {
return []sdk.AccAddress{sdk.AccAddress(msg.Username)}
}
// GetConsumeAmount - implements types.Msg
func (msg ProviderReportMsg) GetConsumeAmount() types.Coin {
return types.NewCoinFromInt64(0)
}