From 1a111161b91230e981885a7e893c1a112b1bb6cc Mon Sep 17 00:00:00 2001 From: Armin Date: Mon, 18 Dec 2017 14:16:03 +0100 Subject: [PATCH] console: Fix missing console history with testnet * Fixes #15672 by creating the datadir when stopping the console to prevent failing to save the history if no datadir exists --- console/console.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/console/console.go b/console/console.go index 1ecbfd0b0f37..52fe1f542a18 100644 --- a/console/console.go +++ b/console/console.go @@ -92,6 +92,9 @@ func New(config Config) (*Console, error) { printer: config.Printer, histPath: filepath.Join(config.DataDir, HistoryFile), } + if err := os.MkdirAll(config.DataDir, 0700); err != nil { + return nil, err + } if err := console.init(config.Preload); err != nil { return nil, err } @@ -423,7 +426,7 @@ func (c *Console) Execute(path string) error { return c.jsre.Exec(path) } -// Stop cleans up the console and terminates the runtime envorinment. +// Stop cleans up the console and terminates the runtime environment. func (c *Console) Stop(graceful bool) error { if err := ioutil.WriteFile(c.histPath, []byte(strings.Join(c.history, "\n")), 0600); err != nil { return err