aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/wallet.cpp
diff options
context:
space:
mode:
authorAndrew Chow <[email protected]>2019-06-06 23:58:21 +0200
committerAndrew Chow <[email protected]>2019-07-09 16:20:18 -0400
commit8f5b81e6edae9cb22559545de63f391d97c15701 (patch)
tree006eebcef692712932b0b674b05a6a90c72de5ba /src/interfaces/wallet.cpp
parentMove various SigningProviders to signingprovider.{cpp,h} (diff)
downloaddiscoin-8f5b81e6edae9cb22559545de63f391d97c15701.tar.xz
discoin-8f5b81e6edae9cb22559545de63f391d97c15701.zip
Remove CCryptoKeyStore and move all of it's functionality into CWallet
Instead of having a separate CCryptoKeyStore that handles the encryption stuff, just roll it all into CWallet.
Diffstat (limited to 'src/interfaces/wallet.cpp')
-rw-r--r--src/interfaces/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/wallet.cpp b/src/interfaces/wallet.cpp
index 34c982e1e..f4d25d1f9 100644
--- a/src/interfaces/wallet.cpp
+++ b/src/interfaces/wallet.cpp
@@ -476,7 +476,7 @@ public:
}
std::unique_ptr<Handler> handleStatusChanged(StatusChangedFn fn) override
{
- return MakeHandler(m_wallet->NotifyStatusChanged.connect([fn](CCryptoKeyStore*) { fn(); }));
+ return MakeHandler(m_wallet->NotifyStatusChanged.connect([fn](CWallet*) { fn(); }));
}
std::unique_ptr<Handler> handleAddressBookChanged(AddressBookChangedFn fn) override
{