Skip to content

Commit

Permalink
[docs] Add release notes for bitcoin#21528
Browse files Browse the repository at this point in the history
And fix a typo in the test.
  • Loading branch information
amitiuttarwar committed Aug 4, 2021
1 parent eaf09bd commit aa79c91
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions doc/release-notes.md
Expand Up @@ -57,6 +57,10 @@ Notable changes
P2P and network changes
-----------------------

- A bitcoind node will no longer rumour addresses to inbound peers by default.
They will become eligible for address gossip after sending an ADDR, ADDRV2,
or GETADDR message. (#21528)

Updated RPCs
------------

Expand Down
2 changes: 1 addition & 1 deletion src/wallet/test/spend_tests.cpp
Expand Up @@ -54,7 +54,7 @@ BOOST_FIXTURE_TEST_CASE(SubtractFee, TestChain100Setup)
// Send full input minus more than the fee amount to recipient, check
// leftover input amount is paid to recipient not the miner (to_reduce ==
// -123). This overpays the recipient instead of overpaying the miner more
// than double the neccesary fee.
// than double the necessary fee.
BOOST_CHECK_EQUAL(fee, check_tx(fee + 123));
}

Expand Down
2 changes: 1 addition & 1 deletion test/functional/p2p_addr_relay.py
Expand Up @@ -179,7 +179,7 @@ def relay_tests(self):
# of the outbound peer which is often sent before the GETADDR response.
assert_equal(inbound_peer.num_ipv4_received, 0)

# Send an empty ADDR message to intialize address relay on this connection.
# Send an empty ADDR message to initialize address relay on this connection.
inbound_peer.send_and_ping(msg_addr())

self.log.info('Check that subsequent addr messages sent from an outbound peer are relayed')
Expand Down

0 comments on commit aa79c91

Please sign in to comment.