diff options
author | Amiti Uttarwar <amiti@uttarwar.org> | 2020-08-12 16:45:26 -0700 |
---|---|---|
committer | Amiti Uttarwar <amiti@uttarwar.org> | 2020-09-21 19:03:40 -0700 |
commit | a512925e19a70d7f6b80ac530a169f45ffaafa1c (patch) | |
tree | 6fb374c2389ffa8e0ecc10dde07c42af86c51d84 /doc | |
parent | 50f94b34a33c954f6e207f509c93d33267a5c3e2 (diff) |
[doc] Release notes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release-notes.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/release-notes.md b/doc/release-notes.md index 0ce2b32c61..059c8cd029 100644 --- a/doc/release-notes.md +++ b/doc/release-notes.md @@ -105,6 +105,17 @@ will trigger BIP 125 (replace-by-fee) opt-in. (#11413) - The `testmempoolaccept` RPC returns `vsize` and a `fee` object with the `base` fee if the transaction passes validation. (#19940) +- The `getpeerinfo` RPC now returns a `connection_type` field. This indicates + the type of connection established with the peer. It will return one of six + options. For more information, see the `getpeerinfo` help documentation. + (#19725) + +- The `getpeerinfo` RPC no longer returns the `addnode` field by default. This + field will be fully removed in the next major release. It can be accessed + with the configuration option `-deprecatedrpc=getpeerinfo_addnode`. However, + it is recommended to instead use the `connection_type` field (it will return + `manual` when addnode is true). (#19725) + - The `walletcreatefundedpsbt` RPC call will now fail with `Insufficient funds` when inputs are manually selected but are not enough to cover the outputs and fee. Additional inputs can automatically be added through the |