aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/rpcdump.cpp
diff options
context:
space:
mode:
authorPavel Janík <[email protected]>2016-11-10 08:11:51 +0100
committerPavel Janík <[email protected]>2016-11-10 08:11:51 +0100
commitbdcba6d93308551788a23f75bec194433c30ebfe (patch)
tree7a6c41d002dbbe4986b41c1c0fec059e49322221 /src/wallet/rpcdump.cpp
parentMerge #8894: [Testing] Include fRelay in mininode version messages (diff)
downloaddiscoin-bdcba6d93308551788a23f75bec194433c30ebfe.tar.xz
discoin-bdcba6d93308551788a23f75bec194433c30ebfe.zip
Initialize variable to prevent compiler warning
Diffstat (limited to 'src/wallet/rpcdump.cpp')
-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 c5feb4789..bb5337c4a 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();