diff options
author | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-07-01 16:06:49 +0200 |
---|---|---|
committer | Jonas Schnelli <jonas.schnelli@include7.ch> | 2015-07-01 16:09:58 +0200 |
commit | a7b9623d189eb4a7d37ff7ad706d6385c3a38e80 (patch) | |
tree | 5c8e0ff2ebbc89c965c4a5869332cae6b45489ea /src/wallet | |
parent | 5496253966abec287ea61a648cb518d14903f91f (diff) |
miner: rename UpdateRequestCount signal to ResetRequestCount
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/wallet.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 1774596af1..f36c98e9fc 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -683,10 +683,10 @@ public: } void GetScriptForMining(boost::shared_ptr<CReserveScript> &script); - void UpdateRequestCount(const CBlock& block) + void ResetRequestCount(const uint256 &hash) { LOCK(cs_wallet); - mapRequestCount[block.GetHash()] = 0; + mapRequestCount[hash] = 0; }; unsigned int GetKeyPoolSize() |