forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[doc] add release note for package testmempoolaccept
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Updated RPCs | ||
------------ | ||
|
||
- The `testmempoolaccept` RPC now accepts multiple transactions (still experimental at the moment, | ||
API may be unstable). This is intended for testing transaction packages with dependency | ||
relationships; it is not recommended for batch-validating independent transactions. In addition to | ||
mempool policy, package policies apply: the list cannot contain more than 25 transactions or have a | ||
total size exceeding 101K virtual bytes, and cannot conflict with (spend the same inputs as) each other or | ||
the mempool, even if it would be a valid BIP125 replace-by-fee. There are some known limitations to | ||
the accuracy of the test accept: it's possible for `testmempoolaccept` to return "allowed"=True for a | ||
group of transactions, but "too-long-mempool-chain" if they are actually submitted. (#20833) | ||
|