From 06ca63c281fe1380da1f0a2e8f9b199061dc2063 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 3 Oct 2016 08:01:16 -0700 Subject: [PATCH] migrate: minor. --- migrate/walletdb2to3.js | 1 + 1 file changed, 1 insertion(+) diff --git a/migrate/walletdb2to3.js b/migrate/walletdb2to3.js index a6b0f408..77bb238f 100644 --- a/migrate/walletdb2to3.js +++ b/migrate/walletdb2to3.js @@ -266,6 +266,7 @@ function walletFromRaw(data) { wallet.token = p.readBytes(32); wallet.tokenDepth = p.readU32(); wallet.master = MasterKey.fromRaw(p.readVarBytes()); + wallet.watchOnly = false; return wallet; }