| 1816 | } |
| 1817 | |
| 1818 | void CWallet::MaybeUpdateBirthTime(int64_t time) |
| 1819 | { |
| 1820 | int64_t birthtime = m_birth_time.load(); |
| 1821 | if (time < birthtime) { |
| 1822 | m_birth_time = time; |
| 1823 | } |
| 1824 | } |
| 1825 | |
| 1826 | /** |
| 1827 | * Scan active chain for relevant transactions after importing keys. This should |