blob: 40690c2fed891f40d458bf4419a9e1876aeadeab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/python
# Copyright 2014 BitPay, Inc.
# Distributed under the MIT/X11 software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
import os
import bctest
if __name__ == '__main__':
bctest.bctester(os.environ["srcdir"] + "/test/data",
"bitcoin-util-test.json")
|