diff options
author | John Newbery <john@johnnewbery.com> | 2017-10-17 16:16:39 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-11-29 17:14:48 -0500 |
commit | 873beca6deda119077f53921f0d19c3ebfc7cc44 (patch) | |
tree | 426d8ecde39b8bf44612d5a9b4098d676a5c5917 /test/functional/p2p-timeouts.py | |
parent | 9f2c2dba21855b8cb9b193b1819be73fa4a23a99 (diff) |
[tests] Rename NodeConn and NodeConnCB
NodeConn -> P2PConnection
NodeConnCB -> P2PInterface
Diffstat (limited to 'test/functional/p2p-timeouts.py')
-rwxr-xr-x | test/functional/p2p-timeouts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/p2p-timeouts.py b/test/functional/p2p-timeouts.py index 21ae29eb6a..b2f3a861cf 100755 --- a/test/functional/p2p-timeouts.py +++ b/test/functional/p2p-timeouts.py @@ -27,7 +27,7 @@ from test_framework.mininode import * from test_framework.test_framework import BitcoinTestFramework from test_framework.util import * -class TestNode(NodeConnCB): +class TestNode(P2PInterface): def on_version(self, message): # Don't send a verack in response pass |