diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-11-10 10:34:46 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-11-10 10:35:07 +0100 |
| commit | aab102cbae6b16312f79a7d85e7b69245200f84e (patch) | |
| tree | 0f80ac9351c60a60661ba1fff64bf303ec0a3abb /src | |
| parent | Merge #9120: bug: Missed one "return false" in recent refactoring in #9067 (diff) | |
| parent | Initialize variable to prevent compiler warning (diff) | |
| download | discoin-aab102cbae6b16312f79a7d85e7b69245200f84e.tar.xz discoin-aab102cbae6b16312f79a7d85e7b69245200f84e.zip | |
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.cpp | 2 |
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(); |