diff options
author | kiel barry <kiel.j.barry@gmail.com> | 2018-05-09 15:38:03 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2018-05-09 15:38:03 +0800 |
commit | 4ea493e7eb9fa3b3695a22487de2605e8da1d2fa (patch) | |
tree | 1a5e92185424d3b300a3516b25c9ebe10f807c90 /cmd/geth | |
parent | c60f6f62147048f80a0e092b483318af88b5d78b (diff) | |
download | go-tangerine-4ea493e7eb9fa3b3695a22487de2605e8da1d2fa.tar go-tangerine-4ea493e7eb9fa3b3695a22487de2605e8da1d2fa.tar.gz go-tangerine-4ea493e7eb9fa3b3695a22487de2605e8da1d2fa.tar.bz2 go-tangerine-4ea493e7eb9fa3b3695a22487de2605e8da1d2fa.tar.lz go-tangerine-4ea493e7eb9fa3b3695a22487de2605e8da1d2fa.tar.xz go-tangerine-4ea493e7eb9fa3b3695a22487de2605e8da1d2fa.tar.zst go-tangerine-4ea493e7eb9fa3b3695a22487de2605e8da1d2fa.zip |
cmd: various golint fixes (#16700)
* cmd: various golint fixes
* cmd: update to pr change request
* cmd: update to pr change request
Diffstat (limited to 'cmd/geth')
-rw-r--r-- | cmd/geth/accountcmd.go | 4 | ||||
-rw-r--r-- | cmd/geth/bugcmd.go | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/cmd/geth/accountcmd.go b/cmd/geth/accountcmd.go index 0db5c4ce0..071be8539 100644 --- a/cmd/geth/accountcmd.go +++ b/cmd/geth/accountcmd.go @@ -340,7 +340,7 @@ func importWallet(ctx *cli.Context) error { if len(keyfile) == 0 { utils.Fatalf("keyfile must be given as argument") } - keyJson, err := ioutil.ReadFile(keyfile) + keyJSON, err := ioutil.ReadFile(keyfile) if err != nil { utils.Fatalf("Could not read wallet file: %v", err) } @@ -349,7 +349,7 @@ func importWallet(ctx *cli.Context) error { passphrase := getPassPhrase("", false, 0, utils.MakePasswordList(ctx)) ks := stack.AccountManager().Backends(keystore.KeyStoreType)[0].(*keystore.KeyStore) - acct, err := ks.ImportPreSaleKey(keyJson, passphrase) + acct, err := ks.ImportPreSaleKey(keyJSON, passphrase) if err != nil { utils.Fatalf("%v", err) } diff --git a/cmd/geth/bugcmd.go b/cmd/geth/bugcmd.go index 51187ac90..7e9a8ccc7 100644 --- a/cmd/geth/bugcmd.go +++ b/cmd/geth/bugcmd.go @@ -41,7 +41,7 @@ var bugCommand = cli.Command{ Category: "MISCELLANEOUS COMMANDS", } -const issueUrl = "https://github.com/ethereum/go-ethereum/issues/new" +const issueURL = "https://github.com/ethereum/go-ethereum/issues/new" // reportBug reports a bug by opening a new URL to the go-ethereum GH issue // tracker and setting default values as the issue body. @@ -58,8 +58,8 @@ func reportBug(ctx *cli.Context) error { fmt.Fprintln(&buff, header) // open a new GH issue - if !browser.Open(issueUrl + "?body=" + url.QueryEscape(buff.String())) { - fmt.Printf("Please file a new issue at %s using this template:\n\n%s", issueUrl, buff.String()) + if !browser.Open(issueURL + "?body=" + url.QueryEscape(buff.String())) { + fmt.Printf("Please file a new issue at %s using this template:\n\n%s", issueURL, buff.String()) } return nil } |