mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-02-10 14:14:30 +00:00
13 lines
326 B
Python
Executable File
13 lines
326 B
Python
Executable File
#!/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")
|
|
|