diff options
author | Patrick Strateman <patrick.strateman@gmail.com> | 2016-06-07 21:41:03 -0700 |
---|---|---|
committer | Patrick Strateman <patrick.strateman@gmail.com> | 2016-07-29 17:04:14 -0700 |
commit | 867f842f1e5a385aeb2093f802d6f37a84d0fe5d (patch) | |
tree | 11f1d708106754f15a7d6f5c03bb61df3c714b07 /src/wallet/wallet.h | |
parent | 00f09c920c2e8906d2260251be6d1d2fa1bbb29d (diff) |
Remove CWalletDB* parameter from CWallet::AddToWallet
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 3bbacaae57..236ef85114 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -729,7 +729,7 @@ public: bool GetAccountPubkey(CPubKey &pubKey, std::string strAccount, bool bForceNew = false); void MarkDirty(); - bool AddToWallet(const CWalletTx& wtxIn, CWalletDB* pwalletdb); + bool AddToWallet(const CWalletTx& wtxIn, bool fFlushOnClose=true); bool LoadToWallet(const CWalletTx& wtxIn); void SyncTransaction(const CTransaction& tx, const CBlockIndex *pindex, const CBlock* pblock); bool AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate); |