mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-14 20:25:17 +00:00
26 lines
429 B
Go
26 lines
429 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var rejectCmd = &cobra.Command{
|
|
Use: "reject",
|
|
Short: "Rejects the pending transaction",
|
|
Long: `Rejects a pending transfer:
|
|
|
|
reject <PendingTransaction>
|
|
|
|
PendingTransaction - the address of the pending transfer
|
|
`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
fmt.Println("command not yet available")
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
tokenCmd.AddCommand(rejectCmd)
|
|
}
|