aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-03-20 13:15:05 -0400
committerMarcoFalke <falke.marco@gmail.com>2019-03-19 17:06:43 -0400
commitfa1ad200d378fc3a4dc4c54214965d3c852db7d7 (patch)
treed2167474443ee93d66277d6503e0420d8b7bbe3c /doc
parentfa96d7642178b5472b7aa76de9c8b86e7b9cde54 (diff)
downloadbitcoin-fa1ad200d378fc3a4dc4c54214965d3c852db7d7.tar.xz
doc: Add release notes for 15620
Diffstat (limited to 'doc')
-rw-r--r--doc/release-notes-15620.md13
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/release-notes-15620.md b/doc/release-notes-15620.md
new file mode 100644
index 0000000000..bf89a70a4e
--- /dev/null
+++ b/doc/release-notes-15620.md
@@ -0,0 +1,13 @@
+Updated RPCs
+------------
+
+* The -maxtxfee setting no longer has any effect on non-wallet RPCs.
+
+ The `sendrawtransaction` and `testmempoolaccept` RPC methods previously
+ accepted an `allowhighfees` parameter to fail the mempool acceptance in case
+ the transaction's fee would exceed the value of the command line argument
+ `-maxtxfee`. To uncouple the RPCs from the global option, they now have a
+ hardcoded default for the maximum transaction fee, that can be changed for
+ both RPCs on a per-call basis with the `maxfeerate` parameter. The
+ `allowhighfees` boolean option has been removed and replaced by the
+ `maxfeerate` numeric option.