aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorglozow <gloriajzhao@gmail.com>2023-05-10 16:43:05 +0100
committerglozow <gloriajzhao@gmail.com>2023-10-02 10:15:22 +0100
commit5b878be742dbfcd232d949d2df1fff4743aec3d8 (patch)
tree865bf7f97a811883db2957a28569c9435f1ab678 /doc
parent7a9bb2a2a59ba49f80519c8435229abec2432486 (diff)
downloadbitcoin-5b878be742dbfcd232d949d2df1fff4743aec3d8.tar.xz
[doc] add release note for submitpackage
Diffstat (limited to 'doc')
-rw-r--r--doc/release-notes-27609.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/doc/release-notes-27609.md b/doc/release-notes-27609.md
new file mode 100644
index 0000000000..b8cecbd882
--- /dev/null
+++ b/doc/release-notes-27609.md
@@ -0,0 +1,14 @@
+- A new RPC, `submitpackage`, has been added. It can be used to submit a list of raw hex
+ transactions to the mempool to be evaluated as a package using consensus and mempool policy rules.
+These policies include package CPFP, allowing a child with high fees to bump a parent below the
+mempool minimum feerate (but not minimum relay feerate).
+
+ - Warning: successful submission does not mean the transactions will propagate throughout the
+ network, as package relay is not supported.
+
+ - Not all features are available. The package is limited to a child with all of its
+ unconfirmed parents, and no parent may spend the output of another parent. Also, package
+ RBF is not supported. Refer to doc/policy/packages.md for more details on package policies
+ and limitations.
+
+ - This RPC is experimental. Its interface may change.