signer/main: remove redundant option

This commit is contained in:
Martin Holst Swende 2018-02-02 09:46:44 +01:00
parent 8548d7dcb6
commit c9eb319137
No known key found for this signature in database
GPG key ID: 683B438C05A5DDF0

View file

@ -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,