aboutsummaryrefslogtreecommitdiff
path: root/test/functional/p2p-fullblocktest.py
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-10-16 21:46:23 -0400
committerJohn Newbery <john@johnnewbery.com>2017-10-16 21:46:23 -0400
commitf893085325b57dd07bde78a01e5dcb7d303154de (patch)
treedd0fcd3155fde2b3a50f6cfee75f482d857c185b /test/functional/p2p-fullblocktest.py
parent8f9e3627ef054c9732f4e529c6ed429ed8dc7183 (diff)
downloadbitcoin-f893085325b57dd07bde78a01e5dcb7d303154de.tar.xz
[tests] Don't subclass from object for Python 3
Diffstat (limited to 'test/functional/p2p-fullblocktest.py')
-rwxr-xr-xtest/functional/p2p-fullblocktest.py2
1 files changed, 1 insertions, 1 deletions
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