diff options
| author | leijurv <[email protected]> | 2016-08-13 11:21:13 -0600 |
|---|---|---|
| committer | leijurv <[email protected]> | 2016-08-14 07:57:11 -0600 |
| commit | 1aacfc2da521a8e0d718e9ac561d9b2d7916eb0b (patch) | |
| tree | 36df60d617ba18670531ac3055ea24a4ca13753c /src/wallet/wallet.cpp | |
| parent | Merge #8353: Trivial: tiny c++11 refactors (diff) | |
| download | discoin-1aacfc2da521a8e0d718e9ac561d9b2d7916eb0b.tar.xz discoin-1aacfc2da521a8e0d718e9ac561d9b2d7916eb0b.zip | |
various typos
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 ee9254050..8a3bebcc6 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3132,7 +3132,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); |