diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-05-30 22:30:17 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-05-31 15:59:38 +0800 |
commit | da729e5b386ca0fd32344dcc1fd63d14c0bb39ab (patch) | |
tree | 4580f73272390fd4c9d6cbaf00ae523ef745a3cf /cmd/geth/main.go | |
parent | 14ae5708d61059d424c9be9822b85a3f4bb392b3 (diff) | |
download | dexon-da729e5b386ca0fd32344dcc1fd63d14c0bb39ab.tar.gz dexon-da729e5b386ca0fd32344dcc1fd63d14c0bb39ab.tar.zst dexon-da729e5b386ca0fd32344dcc1fd63d14c0bb39ab.zip |
cmd/geth, console: fix reviewer issues
Diffstat (limited to 'cmd/geth/main.go')
-rw-r--r-- | cmd/geth/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go index cdbda53e8..5ff1a7368 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -236,7 +236,7 @@ participating. app.After = func(ctx *cli.Context) error { logger.Flush() debug.Exit() - console.TerminalPrompter.Close() // Resets terminal mode. + console.Stdin.Close() // Resets terminal mode. return nil } } |