From 11e41b90c90b4b1153bfde03b0d82c2c5990cb97 Mon Sep 17 00:00:00 2001 From: Pasta Date: Mon, 16 Sep 2019 14:03:09 -0500 Subject: [PATCH] internal -> fInternal Signed-off-by: Pasta --- src/wallet/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 7cfb4b4d6..1fcd7ea09 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -4337,7 +4337,7 @@ bool CWallet::TopUpKeyPool(unsigned int kpSize) assert(m_max_keypool_index < std::numeric_limits::max()); // How in the hell did you use so many keys? int64_t index = ++m_max_keypool_index; - if (!walletdb.WritePool(index, CKeyPool(GenerateNewKey(walletdb, internal), internal))) { + if (!walletdb.WritePool(index, CKeyPool(GenerateNewKey(walletdb, fInternal), fInternal))) { throw std::runtime_error(std::string(__func__) + ": writing generated key failed"); }