We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ab73f commit 38b4fc8Copy full SHA for 38b4fc8
cmd/geth/bugcmd.go
@@ -29,11 +29,12 @@ import (
29
"github.com/ethereum/go-ethereum/cmd/internal/browser"
30
"github.com/ethereum/go-ethereum/params"
31
32
+ "github.com/ethereum/go-ethereum/cmd/utils"
33
cli "gopkg.in/urfave/cli.v1"
34
)
35
36
var bugCommand = cli.Command{
- Action: reportBug,
37
+ Action: utils.MigrateFlags(reportBug),
38
Name: "bug",
39
Usage: "opens a window to report a bug on the geth repo",
40
ArgsUsage: " ",
0 commit comments