39 lines
904 B
Go
39 lines
904 B
Go
|
package cli
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
|
||
|
"github.com/cosmos/cosmos-sdk/client"
|
||
|
// "github.com/cosmos/cosmos-sdk/client/flags"
|
||
|
"colinear/x/colinearcore/types"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
DefaultRelativePacketTimeoutTimestamp = uint64((time.Duration(10) * time.Minute).Nanoseconds())
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
flagPacketTimeoutTimestamp = "packet-timeout-timestamp"
|
||
|
listSeparator = ","
|
||
|
)
|
||
|
|
||
|
// GetTxCmd returns the transaction commands for this module
|
||
|
func GetTxCmd() *cobra.Command {
|
||
|
cmd := &cobra.Command{
|
||
|
Use: types.ModuleName,
|
||
|
Short: fmt.Sprintf("%s transactions subcommands", types.ModuleName),
|
||
|
DisableFlagParsing: true,
|
||
|
SuggestionsMinimumDistance: 2,
|
||
|
RunE: client.ValidateCmd,
|
||
|
}
|
||
|
|
||
|
cmd.AddCommand(CmdNewAuction())
|
||
|
cmd.AddCommand(CmdNewBid())
|
||
|
// this line is used by starport scaffolding # 1
|
||
|
|
||
|
return cmd
|
||
|
}
|