diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-04-11 13:01:30 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-04-11 13:01:30 +0200 |
commit | 3a4008f0fc56b921924f16cd70dbfa121b4ec46d (patch) | |
tree | 4963f9d99dc51a4cd1aae0cbf7ed0232213e1977 /src/rpc/core_rpc_server.cpp | |
parent | Merge pull request #5373 (diff) | |
parent | wallet: new option to start background mining (diff) | |
download | monero-3a4008f0fc56b921924f16cd70dbfa121b4ec46d.tar.xz |
Merge pull request #5374
a2561653 wallet: new option to start background mining (moneromooo-monero)
Diffstat (limited to 'src/rpc/core_rpc_server.cpp')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 161ad2951..2c51832a2 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -973,6 +973,7 @@ namespace cryptonote const miner& lMiner = m_core.get_miner(); res.active = lMiner.is_mining(); res.is_background_mining_enabled = lMiner.get_is_background_mining_enabled(); + store_difficulty(m_core.get_blockchain_storage().get_difficulty_for_next_block(), res.difficulty, res.wide_difficulty, res.difficulty_top64); res.block_target = m_core.get_blockchain_storage().get_current_hard_fork_version() < 2 ? DIFFICULTY_TARGET_V1 : DIFFICULTY_TARGET_V2; if ( lMiner.is_mining() ) { |