mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
100ca0ebaf
* first * attempt p2p connect send tool * attempt * stream registration * trying to register * attempt * workinnnn * begin * p2p prysmctl tool * ignore * fix * delete deprecated * p2p smaller iface surface area * further p2p refactor * gaz * better logging * process * all functionality * fix up * rhandle * v2 req * cmd * send sub * v1 handle * show head slot * cmd * cmd lib * gazelle fix * bazel * gaz * work on the handshake items * prevent dial to self * add config awareness * gaz * inferring host addrs from p2p * initialize data mappings * add own mock * fix up logic * gaz * add img * gaz * add images * builds * builds * nishant feedback: Co-authored-by: Nishant Das <nishdas93@gmail.com>
18 lines
364 B
Go
18 lines
364 B
Go
package p2p
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
var Commands = []*cli.Command{
|
|
{
|
|
Name: "p2p",
|
|
Usage: "commands for interacting with beacon nodes via p2p",
|
|
Subcommands: []*cli.Command{
|
|
{
|
|
Name: "send",
|
|
Usage: "commands for sending p2p rpc requests to beacon nodes",
|
|
Subcommands: []*cli.Command{requestBlocksCmd},
|
|
},
|
|
},
|
|
},
|
|
}
|