From c4316fefa5f56d62eeceb710ee18313bd9be1128 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Mon, 29 Jul 2013 02:34:01 +0200 Subject: [PATCH] Make sure new wallet variables are initialized --- src/wallet.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/wallet.h b/src/wallet.h index 92f893c6b..3474045e3 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -104,6 +104,8 @@ public: nMasterKeyMaxID = 0; pwalletdbEncryption = NULL; nOrderPosNext = 0; + nNextResend = 0; + nLastResend = 0; } CWallet(std::string strWalletFileIn) { @@ -114,6 +116,8 @@ public: nMasterKeyMaxID = 0; pwalletdbEncryption = NULL; nOrderPosNext = 0; + nNextResend = 0; + nLastResend = 0; } std::map mapWallet;