62 lines
1.5 KiB
Go
62 lines
1.5 KiB
Go
package cli
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
|
|
"github.com/cosmos/cosmos-sdk/examples/democoin/x/pow"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/wire"
|
|
authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
|
|
)
|
|
|
|
// command to mine some pow!
|
|
func MineCmd(cdc *wire.Codec) *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "mine [difficulty] [count] [nonce] [solution]",
|
|
Short: "Mine some coins with proof-of-work!",
|
|
Args: cobra.ExactArgs(4),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
ctx := context.NewCoreContextFromViper().WithDecoder(authcmd.GetAccountDecoder(cdc))
|
|
|
|
from, err := ctx.GetFromAddress()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
difficulty, err := strconv.ParseUint(args[0], 0, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
count, err := strconv.ParseUint(args[1], 0, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
nonce, err := strconv.ParseUint(args[2], 0, 64)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
solution := []byte(args[3])
|
|
|
|
msg := pow.NewMsgMine(from, difficulty, count, nonce, solution)
|
|
|
|
// get account name
|
|
name := ctx.FromAddressName
|
|
|
|
// build and sign the transaction, then broadcast to Tendermint
|
|
err = ctx.EnsureSignBuildBroadcast(name, []sdk.Msg{msg}, cdc, viper.GetBool(client.FlagAsync), false)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
},
|
|
}
|
|
}
|