aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/subaddress.h
diff options
context:
space:
mode:
authorstoffu <stoffu@protonmail.ch>2018-06-14 08:22:30 +0900
committerstoffu <stoffu@protonmail.ch>2018-06-28 09:59:09 +0900
commit4510f417f9726f0043859055408a99ad62f91383 (patch)
tree3bfb7cd35e6753d957189b8e4f508e3fadb81c76 /src/wallet/api/subaddress.h
parentMerge pull request #3907 (diff)
downloadmonero-4510f417f9726f0043859055408a99ad62f91383.tar.xz
Wallet API: add some missing override keyword
Also remove dust() from UnsignedTransactionImpl (already in PendingTransactionImpl)
Diffstat (limited to 'src/wallet/api/subaddress.h')
-rw-r--r--src/wallet/api/subaddress.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wallet/api/subaddress.h b/src/wallet/api/subaddress.h
index 3f9e37ac8..f3db7d97b 100644
--- a/src/wallet/api/subaddress.h
+++ b/src/wallet/api/subaddress.h
@@ -40,10 +40,10 @@ public:
~SubaddressImpl();
// Fetches addresses from Wallet2
- void refresh(uint32_t accountIndex);
- std::vector<SubaddressRow*> getAll() const;
- void addRow(uint32_t accountIndex, const std::string &label);
- void setLabel(uint32_t accountIndex, uint32_t addressIndex, const std::string &label);
+ void refresh(uint32_t accountIndex) override;
+ std::vector<SubaddressRow*> getAll() const override;
+ void addRow(uint32_t accountIndex, const std::string &label) override;
+ void setLabel(uint32_t accountIndex, uint32_t addressIndex, const std::string &label) override;
private:
void clearRows();