From 6805d7a7a1bed028fad55d9faa68947a59ff8ec7 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Mon, 24 Feb 2014 16:01:03 -0500 Subject: [PATCH] Kick off full rescan if tx file is missing. --- cmd.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd.go b/cmd.go index 1e44843..c700b7c 100644 --- a/cmd.go +++ b/cmd.go @@ -302,6 +302,7 @@ func OpenSavedAccount(name string, cfg *config) (*Account, error) { // but other errors can be more important, so only return // this if none of the others are hit. finalErr = ErrNoTxs + a.fullRescan = true } else { defer txfile.Close() if _, err = txs.ReadFrom(txfile); err != nil {