aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/wallet.cpp
diff options
context:
space:
mode:
authorJoão Barbosa <[email protected]>2019-01-17 17:37:46 +0000
committerJoão Barbosa <[email protected]>2019-02-12 22:07:45 +0000
commitf6122abe03699423faca29035f16f3afc527f4d3 (patch)
treea71d1af59576a741a86f52b94bde5a9550aea674 /src/interfaces/wallet.cpp
parentMerge #15238: [QA] remove some magic mining constants in functional tests (diff)
downloaddiscoin-f6122abe03699423faca29035f16f3afc527f4d3.tar.xz
discoin-f6122abe03699423faca29035f16f3afc527f4d3.zip
interfaces: Add remove to Wallet
Diffstat (limited to 'src/interfaces/wallet.cpp')
-rw-r--r--src/interfaces/wallet.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/interfaces/wallet.cpp b/src/interfaces/wallet.cpp
index 206227b10..5b5430037 100644
--- a/src/interfaces/wallet.cpp
+++ b/src/interfaces/wallet.cpp
@@ -468,6 +468,10 @@ public:
bool IsWalletFlagSet(uint64_t flag) override { return m_wallet.IsWalletFlagSet(flag); }
OutputType getDefaultAddressType() override { return m_wallet.m_default_address_type; }
OutputType getDefaultChangeType() override { return m_wallet.m_default_change_type; }
+ void remove() override
+ {
+ RemoveWallet(m_shared_wallet);
+ }
std::unique_ptr<Handler> handleUnload(UnloadFn fn) override
{
return MakeHandler(m_wallet.NotifyUnload.connect(fn));