Merge #9760: [wallet] Remove importmulti always-true check
ec1267f
[wallet] Remove importmulti always-true check (Russell Yanofsky)
This commit is contained in:
commit
2dad02232a
1 changed files with 1 additions and 1 deletions
|
@ -1072,7 +1072,7 @@ UniValue importmulti(const JSONRPCRequest& mainRequest)
|
|||
}
|
||||
}
|
||||
|
||||
if (fRescan && fRunScan && requests.size() && nLowestTimestamp <= chainActive.Tip()->GetBlockTimeMax()) {
|
||||
if (fRescan && fRunScan && requests.size()) {
|
||||
CBlockIndex* pindex = nLowestTimestamp > minimumTimestamp ? chainActive.FindEarliestAtLeast(std::max<int64_t>(nLowestTimestamp - 7200, 0)) : chainActive.Genesis();
|
||||
|
||||
if (pindex) {
|
||||
|
|
Loading…
Add table
Reference in a new issue