aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2017-10-09 14:26:53 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2017-10-09 14:26:53 +0200
commit68feb49105a9a473cf97dc2eb67e9370051d9ca6 (patch)
tree478bdd73b0fa2b45b109d1a0e68d31d1fbb873dd /src
parentc6b07fddcfb664d7d1afbff460a68479fe1238d2 (diff)
downloadbitcoin-68feb49105a9a473cf97dc2eb67e9370051d9ca6.tar.xz
Use nullptr instead of NULL
Diffstat (limited to 'src')
-rw-r--r--src/wallet/wallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index 925b474d73..872b2d1e0e 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -3870,7 +3870,7 @@ CWallet* CWallet::CreateWalletFromFile(const std::string walletFile)
// Top up the keypool
if (!walletInstance->TopUpKeyPool()) {
InitError(_("Unable to generate initial keys") += "\n");
- return NULL;
+ return nullptr;
}
walletInstance->SetBestChain(chainActive.GetLocator());