]> Git Repo - VerusCoin.git/commitdiff
Add "zkey" to list of key types (used by the wallet to decide
authorSimon <[email protected]>
Tue, 23 Aug 2016 20:10:47 +0000 (13:10 -0700)
committerSimon <[email protected]>
Wed, 24 Aug 2016 18:19:34 +0000 (11:19 -0700)
whether or not it can be recovered if it detects bad records).

src/wallet/walletdb.cpp

index 3c2176489fca2d3d194be0c6c7433e1415df4628..ab1d364e44a9b1d55f3e702871ae972a94043e9a 100644 (file)
@@ -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");
 }
 
This page took 0.026616 seconds and 4 git commands to generate.