Fix importwallet nTimeFirstKey
This commit is contained in:
parent
178d6a1b65
commit
4c35366bdc
1 changed files with 3 additions and 0 deletions
|
@ -212,6 +212,9 @@ Value importwallet(const Array& params, bool fHelp)
|
|||
while (pindex && pindex->pprev && pindex->nTime > nTimeBegin - 7200)
|
||||
pindex = pindex->pprev;
|
||||
|
||||
if (!pwalletMain->nTimeFirstKey || nTimeBegin < pwalletMain->nTimeFirstKey)
|
||||
pwalletMain->nTimeFirstKey = nTimeBegin;
|
||||
|
||||
LogPrintf("Rescanning last %i blocks\n", chainActive.Height() - pindex->nHeight + 1);
|
||||
pwalletMain->ScanForWalletTransactions(pindex);
|
||||
pwalletMain->MarkDirty();
|
||||
|
|
Loading…
Reference in a new issue