mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-10 10:52:31 -05:00
Merge #9121: Initialize variable to prevent compiler warning
bdcba6d
Initialize variable to prevent compiler warning (Pavel Janík)
This commit is contained in:
commit
aab102cbae
1 changed files with 1 additions and 1 deletions
|
@ -1017,7 +1017,7 @@ UniValue importmulti(const JSONRPCRequest& mainRequest)
|
||||||
|
|
||||||
bool fRunScan = false;
|
bool fRunScan = false;
|
||||||
const int64_t minimumTimestamp = 1;
|
const int64_t minimumTimestamp = 1;
|
||||||
int64_t nLowestTimestamp;
|
int64_t nLowestTimestamp = 0;
|
||||||
|
|
||||||
if (fRescan && chainActive.Tip()) {
|
if (fRescan && chainActive.Tip()) {
|
||||||
nLowestTimestamp = chainActive.Tip()->GetBlockTime();
|
nLowestTimestamp = chainActive.Tip()->GetBlockTime();
|
||||||
|
|
Loading…
Add table
Reference in a new issue