aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/p2p-acceptblock.py
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-12-04 13:10:58 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-12-04 13:15:59 +0100
commit2f601d215da1683ae99ab9973219044c32fa2093 (patch)
tree041242aabe7b554daa3a388bbed67a80c4600656 /qa/rpc-tests/p2p-acceptblock.py
parent792259278e4f2e43d7e09f89335ed80979449b1d (diff)
downloadbitcoin-2f601d215da1683ae99ab9973219044c32fa2093.tar.xz
test: remove necessity to call create_callback_map
Remove necessity to call create_callback_map (as well as the function itself) from the Python P2P test framework. Invoke the appropriate methods directly. - Easy to forget to call it and wonder why it doesn't work - Simplifies the code - This makes it easier to handle new messages in subclasses
Diffstat (limited to 'qa/rpc-tests/p2p-acceptblock.py')
-rwxr-xr-xqa/rpc-tests/p2p-acceptblock.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/qa/rpc-tests/p2p-acceptblock.py b/qa/rpc-tests/p2p-acceptblock.py
index 700deab207..23872d8494 100755
--- a/qa/rpc-tests/p2p-acceptblock.py
+++ b/qa/rpc-tests/p2p-acceptblock.py
@@ -62,7 +62,6 @@ The test:
class TestNode(NodeConnCB):
def __init__(self):
NodeConnCB.__init__(self)
- self.create_callback_map()
self.connection = None
self.ping_counter = 1
self.last_pong = msg_pong()