aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorPatrick Strateman <patrick.strateman@gmail.com>2016-09-09 19:22:59 -0700
committerPatrick Strateman <patrick.strateman@gmail.com>2016-09-15 13:50:59 -0700
commit02e2a815367945ea556a1ae9c3596917553ddfdb (patch)
treec8b2ec6a40fe8e0d395b12b3f667084cf0120d6a /src/wallet/wallet.h
parentd2e678d7d220e2f430c2cb4bde559acee00c8c7c (diff)
downloadbitcoin-02e2a815367945ea556a1ae9c3596917553ddfdb.tar.xz
Remove pwalletdb parameter from CWallet::AddAccountingEntry
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index 2b978ba1ee..584f013204 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -777,7 +777,8 @@ public:
bool CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey, CConnman* connman);
void ListAccountCreditDebit(const std::string& strAccount, std::list<CAccountingEntry>& entries);
- bool AddAccountingEntry(const CAccountingEntry&, CWalletDB & pwalletdb);
+ bool AddAccountingEntry(const CAccountingEntry&);
+ bool AddAccountingEntry(const CAccountingEntry&, CWalletDB *pwalletdb);
static CFeeRate minTxFee;
static CFeeRate fallbackFee;