Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
corverroos committed Mar 30, 2022
1 parent f57e482 commit 652fd27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func New() *cobra.Command {
return newRootCmd(
newVersionCmd(runVersionCmd),
newEnrCmd(runNewENR),
newGenP2PCmd(runGenP2P),
newGenP2PKeyCmd(runGenP2PKey),
newRunCmd(app.Run),
newGenSimnetCmd(runGenSimnet),
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/cmd_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func TestCmdFlags(t *testing.T) {

return nil
}),
newGenP2PCmd(func(_ io.Writer, config p2p.Config, datadir string) error {
newGenP2PKeyCmd(func(_ io.Writer, config p2p.Config, datadir string) error {
require.NotNil(t, test.P2PConfig)
require.Equal(t, *test.P2PConfig, config)
require.Equal(t, test.Datadir, datadir)
Expand Down

0 comments on commit 652fd27

Please sign in to comment.