migrate: minor.

This commit is contained in:
Christopher Jeffrey 2016-10-03 08:01:16 -07:00
parent 0f74292082
commit 06ca63c281
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -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;
}