mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 09:53:48 +00:00
signer/main: remove redundant option
This commit is contained in:
parent
8548d7dcb6
commit
c9eb319137
1 changed files with 0 additions and 6 deletions
|
|
@ -31,7 +31,6 @@ import (
|
||||||
"github.com/ethereum/go-ethereum/common"
|
"github.com/ethereum/go-ethereum/common"
|
||||||
"github.com/ethereum/go-ethereum/log"
|
"github.com/ethereum/go-ethereum/log"
|
||||||
"github.com/ethereum/go-ethereum/node"
|
"github.com/ethereum/go-ethereum/node"
|
||||||
"github.com/ethereum/go-ethereum/params"
|
|
||||||
"github.com/ethereum/go-ethereum/rpc"
|
"github.com/ethereum/go-ethereum/rpc"
|
||||||
"gopkg.in/urfave/cli.v1"
|
"gopkg.in/urfave/cli.v1"
|
||||||
)
|
)
|
||||||
|
|
@ -42,11 +41,6 @@ func main() {
|
||||||
app.Name = "signer"
|
app.Name = "signer"
|
||||||
app.Usage = "Manage ethereum Account operations"
|
app.Usage = "Manage ethereum Account operations"
|
||||||
app.Flags = []cli.Flag{
|
app.Flags = []cli.Flag{
|
||||||
cli.Int64Flag{
|
|
||||||
Name: "chainid",
|
|
||||||
Value: params.MainnetChainConfig.ChainId.Int64(),
|
|
||||||
Usage: "chain identifier",
|
|
||||||
},
|
|
||||||
cli.IntFlag{
|
cli.IntFlag{
|
||||||
Name: "loglevel",
|
Name: "loglevel",
|
||||||
Value: 4,
|
Value: 4,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue