aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2016-11-10 10:34:46 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2016-11-10 10:35:07 +0100
commitaab102cbae6b16312f79a7d85e7b69245200f84e (patch)
tree0f80ac9351c60a60661ba1fff64bf303ec0a3abb /src
parent537e0cb252a33ffc7d3ba7d6eb4d244cff71ab28 (diff)
parentbdcba6d93308551788a23f75bec194433c30ebfe (diff)
downloadbitcoin-aab102cbae6b16312f79a7d85e7b69245200f84e.tar.xz
Merge #9121: Initialize variable to prevent compiler warning
bdcba6d Initialize variable to prevent compiler warning (Pavel Janík)
Diffstat (limited to 'src')
-rw-r--r--src/wallet/rpcdump.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp
index c5feb47899..bb5337c4ad 100644
--- a/src/wallet/rpcdump.cpp
+++ b/src/wallet/rpcdump.cpp
@@ -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();