aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2015-12-19 14:27:15 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2016-03-11 09:44:17 +0100
commitf04f4fd2eed581a5e287d14036d790cf2badcbe6 (patch)
tree01dab061a3a03f73c7ad4432196e322ed442f760 /src
parentca8f160af5a54d08f8dc73acd959b0a73a7b427c (diff)
downloadbitcoin-f04f4fd2eed581a5e287d14036d790cf2badcbe6.tar.xz
[doc/log] Fix markdown syntax and line terminate LogPrint
- Fix doxygen comment for payTxFee - [doc] Fix markdown - Make sure LogPrintf strings are line-terminated Github-Pull: #7617 Rebased-From: fa06ce09498707d5e82633f1e1b034675e552628 fa97f95c15a7aee15feea500571a10a90f22ea8b fa266524592cc18c789cc587d738fb0e548fd23a
Diffstat (limited to 'src')
-rw-r--r--src/httprpc.cpp2
-rw-r--r--src/wallet/wallet.cpp4
2 files changed, 2 insertions, 4 deletions
diff --git a/src/httprpc.cpp b/src/httprpc.cpp
index f6fa988b95..57b3f9a09d 100644
--- a/src/httprpc.cpp
+++ b/src/httprpc.cpp
@@ -215,7 +215,7 @@ static bool InitRPCAuthentication()
return false;
}
} else {
- LogPrintf("Config options rpcuser and rpcpassword will soon be deprecated. Locally-run instances may remove rpcuser to use cookie-based auth, or may be replaced with rpcauth. Please see share/rpcuser for rpcauth auth generation.");
+ LogPrintf("Config options rpcuser and rpcpassword will soon be deprecated. Locally-run instances may remove rpcuser to use cookie-based auth, or may be replaced with rpcauth. Please see share/rpcuser for rpcauth auth generation.\n");
strRPCUserColonPass = mapArgs["-rpcuser"] + ":" + mapArgs["-rpcpassword"];
}
return true;
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index be70240a6c..fca3d52f4a 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -33,9 +33,7 @@
using namespace std;
-/**
- * Settings
- */
+/** Transaction fee set by the user */
CFeeRate payTxFee(DEFAULT_TRANSACTION_FEE);
CAmount maxTxFee = DEFAULT_TRANSACTION_MAXFEE;
unsigned int nTxConfirmTarget = DEFAULT_TX_CONFIRM_TARGET;