This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
go-monero/cmd/monero/commands/daemon/generate_blocks.go
2022-10-05 09:40:23 +02:00

77 lines
1.6 KiB
Go

package daemon
import (
"fmt"
"github.com/spf13/cobra"
"git.gammaspectra.live/P2Pool/go-monero/cmd/monero/display"
"git.gammaspectra.live/P2Pool/go-monero/cmd/monero/options"
"git.gammaspectra.live/P2Pool/go-monero/pkg/rpc/daemon"
)
type generateBlocksCommand struct {
amountOfBlocks uint64
walletAddress string
JSON bool
}
func (c *generateBlocksCommand) Cmd() *cobra.Command {
cmd := &cobra.Command{
Use: "generate-blocks",
Short: "generate blocks when in regtest mode",
RunE: c.RunE,
}
cmd.Flags().Uint64Var(&c.amountOfBlocks, "amount-of-blocks",
1, "number of blocks to generate")
cmd.Flags().StringVar(&c.walletAddress, "wallet-address",
"", "address submit the block rewards to")
_ = cmd.MarkFlagRequired("wallet-address")
return cmd
}
func (c *generateBlocksCommand) RunE(cmd *cobra.Command, args []string) error {
ctx, cancel := options.RootOpts.Context()
defer cancel()
client, err := options.RootOpts.Client()
if err != nil {
return fmt.Errorf("client: %w", err)
}
resp, err := client.GenerateBlocks(ctx, daemon.GenerateBlocksRequestParameters{
WalletAddress: c.walletAddress,
AmountOfBlocks: c.amountOfBlocks,
})
if err != nil {
return fmt.Errorf("generate blocks: %w", err)
}
if c.JSON {
return display.JSON(resp)
}
c.pretty(resp)
return nil
}
// nolint:forbidigo
func (c *generateBlocksCommand) pretty(v *daemon.GenerateBlocksResult) {
table := display.NewTable()
table.AddRow("Final Height:", v.Height)
for _, block := range v.Blocks {
table.AddRow("Block:", block)
}
fmt.Println(table)
}
func init() {
RootCommand.AddCommand((&generateBlocksCommand{}).Cmd())
}