mirror of
https://github.com/dashpay/dash.git
synced 2024-12-30 14:25:53 +01:00
a9a209f586
18f05c7
build: python 3 compatibility (Wladimir J. van der Laan)
14 lines
410 B
Python
Executable File
14 lines
410 B
Python
Executable File
#!/usr/bin/python
|
|
# Copyright 2014 BitPay, Inc.
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
from __future__ import division,print_function,unicode_literals
|
|
import os
|
|
import bctest
|
|
import buildenv
|
|
|
|
if __name__ == '__main__':
|
|
bctest.bctester(os.environ["srcdir"] + "/test/data",
|
|
"bitcoin-util-test.json",buildenv)
|
|
|