diff options
author | John Newbery <john@johnnewbery.com> | 2020-06-05 10:59:40 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2020-06-05 10:59:40 -0400 |
commit | c67c1f2c032a8efa141d776a7e5be58f052159ea (patch) | |
tree | 5f2797bb3a7a47d5fe710571397743808a7f8fa7 /test | |
parent | 9d80762fa0931fe553fad241e95bcc1515ef0e95 (diff) |
[tests] Don't call super twice in P2PTxInvStore.on_inv()
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/test_framework/mininode.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/functional/test_framework/mininode.py b/test/functional/test_framework/mininode.py index 69307d1960..a2c695a704 100755 --- a/test/functional/test_framework/mininode.py +++ b/test/functional/test_framework/mininode.py @@ -658,8 +658,6 @@ class P2PTxInvStore(P2PInterface): # save txid self.tx_invs_received[i.hash] += 1 - super().on_inv(message) - def get_invs(self): with mininode_lock: return list(self.tx_invs_received.keys()) |