diff options
| author | João Barbosa <[email protected]> | 2019-01-17 17:37:46 +0000 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2019-02-12 22:07:45 +0000 |
| commit | f6122abe03699423faca29035f16f3afc527f4d3 (patch) | |
| tree | a71d1af59576a741a86f52b94bde5a9550aea674 /src/interfaces/wallet.h | |
| parent | Merge #15238: [QA] remove some magic mining constants in functional tests (diff) | |
| download | discoin-f6122abe03699423faca29035f16f3afc527f4d3.tar.xz discoin-f6122abe03699423faca29035f16f3afc527f4d3.zip | |
interfaces: Add remove to Wallet
Diffstat (limited to 'src/interfaces/wallet.h')
| -rw-r--r-- | src/interfaces/wallet.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interfaces/wallet.h b/src/interfaces/wallet.h index a86212356..a931e5faf 100644 --- a/src/interfaces/wallet.h +++ b/src/interfaces/wallet.h @@ -247,6 +247,9 @@ public: // Get default change type. virtual OutputType getDefaultChangeType() = 0; + // Remove wallet. + virtual void remove() = 0; + //! Register handler for unload message. using UnloadFn = std::function<void()>; virtual std::unique_ptr<Handler> handleUnload(UnloadFn fn) = 0; |