MCPcopy Create free account
hub / github.com/bitcoin/bitcoin / MaybeUpdateBirthTime

Method MaybeUpdateBirthTime

src/wallet/wallet.cpp:1818–1824  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1816}
1817
1818void 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

Callers

nothing calls this directly

Calls 1

loadMethod · 0.45

Tested by

no test coverage detected