aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2_api.h
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-04-03 14:34:38 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-04-03 14:34:38 +0300
commitc37c856d6d9694da33866145f1b69339fed787b1 (patch)
treefd79b154795a8bbb150bcaca88b593662ee1f598 /src/wallet/wallet2_api.h
parentWallet::refresh + tests (diff)
downloadmonero-c37c856d6d9694da33866145f1b69339fed787b1.tar.xz
Wallet::transfer in progress
Diffstat (limited to 'src/wallet/wallet2_api.h')
-rw-r--r--src/wallet/wallet2_api.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet2_api.h b/src/wallet/wallet2_api.h
index c818608ed..1c3cd595a 100644
--- a/src/wallet/wallet2_api.h
+++ b/src/wallet/wallet2_api.h
@@ -74,9 +74,10 @@ struct Wallet
virtual std::string displayAmount(uint64_t amount) const = 0;
// TODO?
// virtual uint64_t unlockedDustBalance() const = 0;
- // TODO refresh
virtual bool refresh() = 0;
// TODO transfer
+ virtual bool transfer(const std::string &dst_addr, uint64_t amount) = 0;
+
};
/**