diff options
author | John Newbery <john@johnnewbery.com> | 2020-08-17 10:10:44 +0100 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2020-08-25 10:04:25 +0100 |
commit | d5800da5199527a366024bc80cad7fcca17d5c4a (patch) | |
tree | b74bc29618771f17ef0f67c1e54aae38186056c1 /test/functional/p2p_segwit.py | |
parent | 5e8df3312e47a73e747ee892face55ed9ababeea (diff) |
[test] Remove final references to mininode
Diffstat (limited to 'test/functional/p2p_segwit.py')
-rwxr-xr-x | test/functional/p2p_segwit.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/p2p_segwit.py b/test/functional/p2p_segwit.py index 2a559e69fc..49b083b998 100755 --- a/test/functional/p2p_segwit.py +++ b/test/functional/p2p_segwit.py @@ -153,8 +153,8 @@ class TestP2PConn(P2PInterface): self.lastgetdata = [] self.wtxidrelay = wtxidrelay - # Avoid sending out msg_getdata in the mininode thread as a reply to invs. - # They are not needed and would only lead to races because we send msg_getdata out in the test thread + # Don't send getdata message replies to invs automatically. + # We'll send the getdata messages explicitly in the test logic. def on_inv(self, message): pass |