From f893085325b57dd07bde78a01e5dcb7d303154de Mon Sep 17 00:00:00 2001 From: John Newbery Date: Mon, 16 Oct 2017 21:46:23 -0400 Subject: [tests] Don't subclass from object for Python 3 --- test/functional/p2p-fullblocktest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/functional/p2p-fullblocktest.py') diff --git a/test/functional/p2p-fullblocktest.py b/test/functional/p2p-fullblocktest.py index 1d969fc7c1..f19b845a32 100755 --- a/test/functional/p2p-fullblocktest.py +++ b/test/functional/p2p-fullblocktest.py @@ -20,7 +20,7 @@ from test_framework.key import CECKey from test_framework.script import * import struct -class PreviousSpendableOutput(object): +class PreviousSpendableOutput(): def __init__(self, tx = CTransaction(), n = -1): self.tx = tx self.n = n # the output we're spending -- cgit v1.2.3