diff --git a/cmd/geth/shardingcmd.go b/cmd/geth/shardingcmd.go index 293754d46f..e33d34ecb3 100644 --- a/cmd/geth/shardingcmd.go +++ b/cmd/geth/shardingcmd.go @@ -19,6 +19,18 @@ var ( Description: ` Launches a sharding client that connects to a running geth node and proposes collations to a Validator Manager Contract. This feature is a work in progress. `, + Subcommands: []cli.Command{ + { + Name: "joinvalidatorset", + Usage: "Join validator set", + ArgsUsage: "", + Action: utils.MigrateFlags(joinValidatorSet), + Category: "SHARDING COMMANDS", + Description: ` +Participate in validator set, client will deposit 100ETH from user's account into VMC validator set, which can be withdrawl at any time. This feature is a work in progress. +`, + }, + }, } ) @@ -30,3 +42,7 @@ func shardingClient(ctx *cli.Context) error { c.Wait() return nil } + +func joinValidatorSet(ctx *cli.Context) error { + return nil +}