diff options
| author | Jon Atack <[email protected]> | 2019-09-21 16:00:38 +0200 |
|---|---|---|
| committer | Jon Atack <[email protected]> | 2019-09-21 16:01:20 +0200 |
| commit | 5c1cd78b7e582660a78d9d9dec673967a6b78936 (patch) | |
| tree | ed8cb213c8fab1acfb0dca04606a3717449be789 /src | |
| parent | test: fix incorrect value in rpc_rawtransaction.py (diff) | |
| download | discoin-5c1cd78b7e582660a78d9d9dec673967a6b78936.tar.xz discoin-5c1cd78b7e582660a78d9d9dec673967a6b78936.zip | |
doc: improve rawtransaction code/test docs
Diffstat (limited to 'src')
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 461e8025d..f548d356c 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -39,9 +39,9 @@ #include <univalue.h> -/** High fee rate for sendrawtransaction and testmempoolaccept. - * By default, transaction with a fee rate higher than this will be rejected by - * the RPCs. This can be overridden with the maxfeerate argument. +/** Maximum fee rate for sendrawtransaction and testmempoolaccept. + * By default, a transaction with a fee rate higher than this will be rejected + * by the RPCs. This can be overridden with the maxfeerate argument. */ static const CFeeRate DEFAULT_MAX_RAW_TX_FEE_RATE{COIN / 10}; |