diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-08-17 12:50:28 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-08-17 12:51:16 +0200 |
| commit | e753eaeb343c0e52bbe2e7c43b16c6a2e6bc3b61 (patch) | |
| tree | 20bf15b38d659fce3027d37d9678009942e13c6c /src/wallet/wallet.cpp | |
| parent | Merge #8513: Fix a type error that would not compile on OSX. (diff) | |
| parent | various typos (diff) | |
| download | discoin-e753eaeb343c0e52bbe2e7c43b16c6a2e6bc3b61.tar.xz discoin-e753eaeb343c0e52bbe2e7c43b16c6a2e6bc3b61.zip | |
Merge #8505: Trivial: Fix typos in various files
1aacfc2 various typos (leijurv)
Diffstat (limited to 'src/wallet/wallet.cpp')
| -rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 888aa029a..05bb35725 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3133,7 +3133,7 @@ void CWallet::GetKeyBirthTimes(std::map<CKeyID, int64_t> &mapKeyBirth) const { mapKeyBirth[it->first] = it->second.nCreateTime; // map in which we'll infer heights of other keys - CBlockIndex *pindexMax = chainActive[std::max(0, chainActive.Height() - 144)]; // the tip can be reorganised; use a 144-block safety margin + CBlockIndex *pindexMax = chainActive[std::max(0, chainActive.Height() - 144)]; // the tip can be reorganized; use a 144-block safety margin std::map<CKeyID, CBlockIndex*> mapKeyFirstBlock; std::set<CKeyID> setKeys; GetKeys(setKeys); |