aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-06-28 10:25:29 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-06-28 10:38:32 +0200
commitfaf36403038afb3df3ddd963bd6c352d3eff4da8 (patch)
tree297bd126913ff53034f4cdc84340969ff54f78aa /src/wallet/wallet.h
parent8cdf91735f2bdc55577d84a9915f5920ce23b00a (diff)
downloadbitcoin-faf36403038afb3df3ddd963bd6c352d3eff4da8.tar.xz
Remove unused wallet pointer from NotifyTransactionChanged signal
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r--src/wallet/wallet.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h
index b63938c5f1..537cdce4df 100644
--- a/src/wallet/wallet.h
+++ b/src/wallet/wallet.h
@@ -735,8 +735,7 @@ public:
* Wallet transaction added, removed or updated.
* @note called with lock cs_wallet held.
*/
- boost::signals2::signal<void (CWallet *wallet, const uint256 &hashTx,
- ChangeType status)> NotifyTransactionChanged;
+ boost::signals2::signal<void(const uint256& hashTx, ChangeType status)> NotifyTransactionChanged;
/** Show progress e.g. for rescan */
boost::signals2::signal<void (const std::string &title, int nProgress)> ShowProgress;