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 /console/console_test.go | |
parent | 14ae5708d61059d424c9be9822b85a3f4bb392b3 (diff) | |
download | go-tangerine-da729e5b386ca0fd32344dcc1fd63d14c0bb39ab.tar.gz go-tangerine-da729e5b386ca0fd32344dcc1fd63d14c0bb39ab.tar.zst go-tangerine-da729e5b386ca0fd32344dcc1fd63d14c0bb39ab.zip |
cmd/geth, console: fix reviewer issues
Diffstat (limited to 'console/console_test.go')
-rw-r--r-- | console/console_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/console/console_test.go b/console/console_test.go index 72d3a2df6..911087824 100644 --- a/console/console_test.go +++ b/console/console_test.go @@ -68,7 +68,8 @@ func (p *hookedPrompter) PromptPassword(prompt string) (string, error) { func (p *hookedPrompter) PromptConfirm(prompt string) (bool, error) { return false, errors.New("not implemented") } -func (p *hookedPrompter) SetScrollHistory(history []string) {} +func (p *hookedPrompter) SetHistory(history []string) {} +func (p *hookedPrompter) AppendHistory(command string) {} func (p *hookedPrompter) SetWordCompleter(completer WordCompleter) {} // tester is a console test environment for the console tests to operate on. |