From 309b0ecd8094fc0f95093803c705192e0a056e7c Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 23 Aug 2016 13:10:47 -0700 Subject: [PATCH] Add "zkey" to list of key types (used by the wallet to decide whether or not it can be recovered if it detects bad records). --- src/wallet/walletdb.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wallet/walletdb.cpp b/src/wallet/walletdb.cpp index 3c217648..ab1d364e 100644 --- a/src/wallet/walletdb.cpp +++ b/src/wallet/walletdb.cpp @@ -641,6 +641,7 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue, static bool IsKeyType(string strType) { return (strType== "key" || strType == "wkey" || + strType == "zkey" || strType == "mkey" || strType == "ckey"); }