Merge pull request #1685
7549116e
Wallet API: Easylogger wrapper for gui (Jaquee)
This commit is contained in:
commit
9781ecaa70
|
@ -44,6 +44,9 @@
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace cryptonote;
|
using namespace cryptonote;
|
||||||
|
|
||||||
|
#undef MONERO_DEFAULT_LOG_CATEGORY
|
||||||
|
#define MONERO_DEFAULT_LOG_CATEGORY "WalletAPI"
|
||||||
|
|
||||||
namespace Monero {
|
namespace Monero {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
@ -255,6 +258,9 @@ uint64_t Wallet::maximumAllowedAmount()
|
||||||
return std::numeric_limits<uint64_t>::max();
|
return std::numeric_limits<uint64_t>::max();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Wallet::debug(const std::string &str) {
|
||||||
|
MDEBUG(str);
|
||||||
|
}
|
||||||
|
|
||||||
///////////////////////// WalletImpl implementation ////////////////////////
|
///////////////////////// WalletImpl implementation ////////////////////////
|
||||||
WalletImpl::WalletImpl(bool testnet)
|
WalletImpl::WalletImpl(bool testnet)
|
||||||
|
|
|
@ -428,6 +428,8 @@ struct Wallet
|
||||||
static bool keyValid(const std::string &secret_key_string, const std::string &address_string, bool isViewKey, bool testnet, std::string &error);
|
static bool keyValid(const std::string &secret_key_string, const std::string &address_string, bool isViewKey, bool testnet, std::string &error);
|
||||||
static std::string paymentIdFromAddress(const std::string &str, bool testnet);
|
static std::string paymentIdFromAddress(const std::string &str, bool testnet);
|
||||||
static uint64_t maximumAllowedAmount();
|
static uint64_t maximumAllowedAmount();
|
||||||
|
// Easylogger wrapper
|
||||||
|
static void debug(const std::string &str);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief StartRefresh - Start/resume refresh thread (refresh every 10 seconds)
|
* @brief StartRefresh - Start/resume refresh thread (refresh every 10 seconds)
|
||||||
|
|
Loading…
Reference in New Issue