diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2019-07-05 18:30:15 +0200 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2019-07-05 18:32:05 +0200 |
commit | 976b034b13d28877aee641833d5ee28a8cc5d83f (patch) | |
tree | 541ac198f12969bf3054c306351523de41463b11 /src/wallet/wallet.cpp | |
parent | 8c69fae94410f54bad13be0f34d54370fddbf4b3 (diff) |
[build]: use #if HAVE_SYSTEM instead of defined(HAVE_SYSTEM)
Diffstat (limited to 'src/wallet/wallet.cpp')
-rw-r--r-- | src/wallet/wallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index 70fc06a7e7..cf0b28f5ca 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -1050,7 +1050,7 @@ bool CWallet::AddToWallet(const CWalletTx& wtxIn, bool fFlushOnClose) // Notify UI of new or updated transaction NotifyTransactionChanged(this, hash, fInsertedNew ? CT_NEW : CT_UPDATED); -#if defined(HAVE_SYSTEM) +#if HAVE_SYSTEM // notify an external script when a wallet transaction comes in or is updated std::string strCmd = gArgs.GetArg("-walletnotify", ""); |