mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 03:01:19 +00:00
13789b6e63
Former-commit-id: 9d452ada62e9afe7295d07b2e7650736e640b39a [formerly ef6fcf4365cff18f14e9bfbd43d6b9d362abfbe4] Former-commit-id: ede05e77ef22b10fd7d12ac635d2879165416904
52 lines
1.6 KiB
Go
52 lines
1.6 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/sharding/collator"
|
|
//"github.com/ethereum/go-ethereum/sharding/proposer"
|
|
|
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
|
cli "gopkg.in/urfave/cli.v1"
|
|
)
|
|
|
|
var (
|
|
collatorClientCommand = cli.Command{
|
|
Action: utils.MigrateFlags(collatorClient),
|
|
Name: "sharding-collator",
|
|
Aliases: []string{"shard-collator"},
|
|
Usage: "Start a sharding collator client",
|
|
ArgsUsage: "[endpoint]",
|
|
Flags: []cli.Flag{utils.DataDirFlag, utils.PasswordFileFlag, utils.NetworkIdFlag, utils.IPCPathFlag, utils.DepositFlag},
|
|
Category: "SHARDING COMMANDS",
|
|
Description: `
|
|
Launches a sharding collator client that connects to a running geth node and submit collations to a Sharding Manager Contract. This feature is a work in progress.
|
|
`,
|
|
}
|
|
proposerClientCommand = cli.Command{
|
|
Action: utils.MigrateFlags(proposerClient),
|
|
Name: "sharding-proposer",
|
|
Aliases: []string{"shard-proposer"},
|
|
Usage: "Start a sharding proposer client",
|
|
ArgsUsage: "[endpoint]",
|
|
Flags: []cli.Flag{utils.DataDirFlag, utils.PasswordFileFlag, utils.NetworkIdFlag, utils.IPCPathFlag},
|
|
Category: "SHARDING COMMANDS",
|
|
Description: `
|
|
Launches a sharding proposer client that connects to a running geth node and proposes collations to collator node. This feature is a work in progress.
|
|
`,
|
|
}
|
|
)
|
|
|
|
func collatorClient(ctx *cli.Context) error {
|
|
c := collator.NewCollator(ctx)
|
|
return c.Start()
|
|
}
|
|
|
|
func proposerClient(ctx *cli.Context) error {
|
|
/*p := proposer.NewProposerClient(ctx)
|
|
if err := proposer.ProposerStart(p); err != nil {
|
|
return err
|
|
}
|
|
p.Wait()
|
|
*/
|
|
return nil
|
|
}
|