Skip to content

Commit aab102c

Browse files
committed
Merge #9121: Initialize variable to prevent compiler warning
bdcba6d Initialize variable to prevent compiler warning (Pavel Janík)
2 parents 537e0cb + bdcba6d commit aab102c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/rpcdump.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,7 +1017,7 @@ UniValue importmulti(const JSONRPCRequest& mainRequest)
10171017

10181018
bool fRunScan = false;
10191019
const int64_t minimumTimestamp = 1;
1020-
int64_t nLowestTimestamp;
1020+
int64_t nLowestTimestamp = 0;
10211021

10221022
if (fRescan && chainActive.Tip()) {
10231023
nLowestTimestamp = chainActive.Tip()->GetBlockTime();

0 commit comments

Comments
 (0)