-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathtx.go
41 lines (35 loc) · 1.34 KB
/
tx.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
package cli
import (
"fmt"
"time"
"github.com/cosmos/cosmos-sdk/client"
"github.com/spf13/cobra"
pkitypes "github.com/zigbee-alliance/distributed-compliance-ledger/types/pki"
// "github.com/cosmos/cosmos-sdk/client/flags".
)
var DefaultRelativePacketTimeoutTimestamp = uint64((time.Duration(10) * time.Minute).Nanoseconds())
// GetTxCmd returns the transaction commands for this module.
func GetTxCmd() *cobra.Command {
cmd := &cobra.Command{
Use: pkitypes.ModuleName,
Short: fmt.Sprintf("%s transactions subcommands", pkitypes.ModuleName),
DisableFlagParsing: true,
SuggestionsMinimumDistance: 2,
RunE: client.ValidateCmd,
}
cmd.AddCommand(CmdProposeAddX509RootCert())
cmd.AddCommand(CmdApproveAddX509RootCert())
cmd.AddCommand(CmdAddX509Cert())
cmd.AddCommand(CmdProposeRevokeX509RootCert())
cmd.AddCommand(CmdApproveRevokeX509RootCert())
cmd.AddCommand(CmdRevokeX509Cert())
cmd.AddCommand(CmdRejectAddX509RootCert())
cmd.AddCommand(CmdAddPkiRevocationDistributionPoint())
cmd.AddCommand(CmdUpdatePkiRevocationDistributionPoint())
cmd.AddCommand(CmdDeletePkiRevocationDistributionPoint())
cmd.AddCommand(CmdAssignVid())
cmd.AddCommand(CmdAddNocX509RootCert())
cmd.AddCommand(CmdRemoveX509Cert())
// this line is used by starport scaffolding # 1
return cmd
}