update monero version (#270)

This commit is contained in:
m2049r 2018-04-30 11:15:40 +02:00 committed by GitHub
parent 3a839a04d5
commit ff6e00e1a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 9 deletions

View File

@ -7,8 +7,8 @@ android {
applicationId "com.m2049r.xmrwallet" applicationId "com.m2049r.xmrwallet"
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 25 targetSdkVersion 25
versionCode 90 versionCode 91
versionName "1.5.0 'CrAzYpass'" versionName "1.5.1 'CrAzY Nacho'"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild { externalNativeBuild {
cmake { cmake {

View File

@ -956,25 +956,25 @@ struct WalletManager
virtual void setDaemonAddress(const std::string &address) = 0; virtual void setDaemonAddress(const std::string &address) = 0;
//! returns whether the daemon can be reached, and its version number //! returns whether the daemon can be reached, and its version number
virtual bool connected(uint32_t *version = NULL) const = 0; virtual bool connected(uint32_t *version = NULL) = 0;
//! returns current blockchain height //! returns current blockchain height
virtual uint64_t blockchainHeight() const = 0; virtual uint64_t blockchainHeight() = 0;
//! returns current blockchain target height //! returns current blockchain target height
virtual uint64_t blockchainTargetHeight() const = 0; virtual uint64_t blockchainTargetHeight() = 0;
//! returns current network difficulty //! returns current network difficulty
virtual uint64_t networkDifficulty() const = 0; virtual uint64_t networkDifficulty() = 0;
//! returns current mining hash rate (0 if not mining) //! returns current mining hash rate (0 if not mining)
virtual double miningHashRate() const = 0; virtual double miningHashRate() = 0;
//! returns current block target //! returns current block target
virtual uint64_t blockTarget() const = 0; virtual uint64_t blockTarget() = 0;
//! returns true iff mining //! returns true iff mining
virtual bool isMining() const = 0; virtual bool isMining() = 0;
//! starts mining with the set number of threads //! starts mining with the set number of threads
virtual bool startMining(const std::string &address, uint32_t threads = 1, bool background_mining = false, bool ignore_battery = true) = 0; virtual bool startMining(const std::string &address, uint32_t threads = 1, bool background_mining = false, bool ignore_battery = true) = 0;