mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-06-02 01:04:43 +02:00
Merge #16929: test: follow-up to rpc: default maxfeerate value as BTC/kB
6659810e2ftest: use named args for sendrawtransaction calls (Jon Atack)5c1cd78b7edoc: improve rawtransaction code/test docs (Jon Atack)acc14c5093test: fix incorrect value in rpc_rawtransaction.py (Jon Atack) Pull request description: Follow-up to PR #16521. - Fix incorrect value in rpc_rawtransaction test as per https://github.com/bitcoin/bitcoin/pull/16521/files#r325842308 - Improve the code docs - Use named arguments as per https://github.com/bitcoin/bitcoin/pull/16521/files#r310715127 Happy to squash or keep only the first commit if the others are too fixup-y. ACKs for top commit: laanwj: ACK6659810e2fTree-SHA512: bf5258f23802ab3ba3defb8791097e08e63f3e2af21023f832cd270dc88d1fa04349e921d69f9f5fedac5dce5cd3c1cc46b48febbede4bc18dccb8be994565b2
This commit is contained in:
@@ -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};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user