p2p: wire pex v2 reactor to router (#6407)

This commit is contained in:
Callum Waters
2021-05-05 18:46:51 +02:00
committed by GitHub
parent ea601ccf15
commit ec5e3b0b02
7 changed files with 77 additions and 27 deletions
+9
View File
@@ -171,6 +171,15 @@ func NewCLI() *CLI {
},
})
cli.root.AddCommand(&cobra.Command{
Use: "resume",
Short: "Resumes the Docker testnet",
RunE: func(cmd *cobra.Command, args []string) error {
logger.Info("Resuming testnet")
return execCompose(cli.testnet.Dir, "up")
},
})
cli.root.AddCommand(&cobra.Command{
Use: "load [multiplier]",
Args: cobra.MaximumNArgs(1),