mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
20ed47a107
* genesis tool * done with tool * delete old tool * no fatal * fix up * Update cmd/prysmctl/testnet/generate_genesis.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * radek feedback * more feedback * required * fix up * gaz * radek feedback Co-authored-by: Radosław Kapka <rkapka@wp.pl>
14 lines
245 B
Go
14 lines
245 B
Go
package testnet
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
var Commands = []*cli.Command{
|
|
{
|
|
Name: "testnet",
|
|
Usage: "commands for dealing with Ethereum beacon chain testnets",
|
|
Subcommands: []*cli.Command{
|
|
generateGenesisStateCmd,
|
|
},
|
|
},
|
|
}
|