aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-08-23 12:35:01 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-08-23 12:35:45 +0300
commit32bc7b41c0193297cc3b67a1b7a941813a407679 (patch)
tree94dd8e6554ec010b4fbe6df58d72174a3b8098cb /src/wallet/api/wallet.cpp
parentlibwallet_api: tests: removed logged passwords (diff)
downloadmonero-32bc7b41c0193297cc3b67a1b7a941813a407679.tar.xz
libwallet_api: helper method to return maximumAllowedAmount
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r--src/wallet/api/wallet.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index ff74ec6c1..a2066e62e 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -154,6 +154,11 @@ bool Wallet::paymentIdValid(const string &paiment_id)
return tools::wallet2::parse_short_payment_id(paiment_id, pid);
}
+uint64_t Wallet::maximumAllowedAmount()
+{
+ return std::numeric_limits<uint64_t>::max();
+}
+
///////////////////////// WalletImpl implementation ////////////////////////
WalletImpl::WalletImpl(bool testnet)