Browse Source

Merge #9121: Initialize variable to prevent compiler warning

bdcba6d Initialize variable to prevent compiler warning (Pavel Janík)
0.14
Wladimir J. van der Laan 8 years ago
parent
commit
aab102cbae
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      src/wallet/rpcdump.cpp

2
src/wallet/rpcdump.cpp

@ -1017,7 +1017,7 @@ UniValue importmulti(const JSONRPCRequest& mainRequest) @@ -1017,7 +1017,7 @@ UniValue importmulti(const JSONRPCRequest& mainRequest)
bool fRunScan = false;
const int64_t minimumTimestamp = 1;
int64_t nLowestTimestamp;
int64_t nLowestTimestamp = 0;
if (fRescan && chainActive.Tip()) {
nLowestTimestamp = chainActive.Tip()->GetBlockTime();

Loading…
Cancel
Save