diff options
author | João Barbosa <joao.paulo.barbosa@gmail.com> | 2019-05-27 22:14:29 +0100 |
---|---|---|
committer | João Barbosa <joao.paulo.barbosa@gmail.com> | 2019-07-08 15:07:17 +0100 |
commit | fa90fe6440301edba71a6f0b1ba3ef1c78d5eae4 (patch) | |
tree | 74b8127eb93fc97e0f9ba790ecad42a206df8df6 /src/qt/walletcontroller.h | |
parent | 224eb9534a8d2b0f140ecb0cc00c61af8ba1da4e (diff) |
refactor: Rename getWallets to getOpenWallets in WalletController
Diffstat (limited to 'src/qt/walletcontroller.h')
-rw-r--r-- | src/qt/walletcontroller.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qt/walletcontroller.h b/src/qt/walletcontroller.h index dcd64aac7b..03039dd795 100644 --- a/src/qt/walletcontroller.h +++ b/src/qt/walletcontroller.h @@ -40,7 +40,8 @@ public: WalletController(interfaces::Node& node, const PlatformStyle* platform_style, OptionsModel* options_model, QObject* parent); ~WalletController(); - std::vector<WalletModel*> getWallets() const; + //! Returns wallet models currently open. + std::vector<WalletModel*> getOpenWallets() const; //! Returns all wallet names in the wallet dir mapped to whether the wallet //! is loaded. |