aboutsummaryrefslogtreecommitdiff
path: root/src/walletdb.h
diff options
context:
space:
mode:
authorCozz Lovan <cozzlovan@yahoo.com>2014-02-14 18:27:15 +0100
committerCozz Lovan <cozzlovan@yahoo.com>2014-06-16 18:56:57 +0200
commit77cbd4623e171ee9c48ada8a421295ed2c8e6c7c (patch)
tree84ff89231b49da39f3ff6d4d8baeded4a3e8c068 /src/walletdb.h
parent529047fcd18acd1b64dc95d6eb69edeaad75d405 (diff)
downloadbitcoin-77cbd4623e171ee9c48ada8a421295ed2c8e6c7c.tar.xz
Let -zapwallettxes recover transaction meta data
Diffstat (limited to 'src/walletdb.h')
-rw-r--r--src/walletdb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/walletdb.h b/src/walletdb.h
index 3bfb436050..8eb716acbb 100644
--- a/src/walletdb.h
+++ b/src/walletdb.h
@@ -122,8 +122,8 @@ public:
DBErrors ReorderTransactions(CWallet*);
DBErrors LoadWallet(CWallet* pwallet);
- DBErrors FindWalletTx(CWallet* pwallet, std::vector<uint256>& vTxHash);
- DBErrors ZapWalletTx(CWallet* pwallet);
+ DBErrors FindWalletTx(CWallet* pwallet, std::vector<uint256>& vTxHash, std::vector<CWalletTx>& vWtx);
+ DBErrors ZapWalletTx(CWallet* pwallet, std::vector<CWalletTx>& vWtx);
static bool Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys);
static bool Recover(CDBEnv& dbenv, std::string filename);
};