From 9b2ef8175725964d9ecf33cf1f7b4fadb1bd5dab Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Thu, 25 Jun 2026 00:59:52 -0300 Subject: [PATCH] doc: add release notes for #33671 (getbalances nonmempool field) --- doc/release-notes-33671.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 doc/release-notes-33671.md diff --git a/doc/release-notes-33671.md b/doc/release-notes-33671.md new file mode 100644 index 00000000000..2df75f3de7e --- /dev/null +++ b/doc/release-notes-33671.md @@ -0,0 +1,11 @@ +Updated RPCs +------------ + +- `getbalances` now includes a `nonmempool` field under `mine`, reporting + the net balance of wallet transactions that are not in the mempool (e.g. + due to too low a feerate, too many unconfirmed ancestors, or a too-large + `OP_RETURN` output). This value is always negative, and is typically an + over-estimate since it accounts for coins being spent but not for change + outputs returning to the wallet (which are also outside the mempool). + Without this field, funds involved in non-mempool transactions could + appear to go missing from the wallet balance. (#33671)