diff options
| author | John Newbery <[email protected]> | 2020-06-05 10:59:40 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2020-06-05 10:59:40 -0400 |
| commit | c67c1f2c032a8efa141d776a7e5be58f052159ea (patch) | |
| tree | 5f2797bb3a7a47d5fe710571397743808a7f8fa7 | |
| parent | [tests] Don't acquire mininode_lock twice in wait_for_broadcast() (diff) | |
| download | discoin-c67c1f2c032a8efa141d776a7e5be58f052159ea.tar.xz discoin-c67c1f2c032a8efa141d776a7e5be58f052159ea.zip | |
[tests] Don't call super twice in P2PTxInvStore.on_inv()
| -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 69307d196..a2c695a70 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()) |