From 638c0f4f10d5ebdaf7582c3104a622874439c136 Mon Sep 17 00:00:00 2001 From: ckti Date: Wed, 20 May 2020 18:53:57 +0000 Subject: [PATCH] Merged in script-copyrights (pull request #66) Update copyrights in scripts * Update copyrights in scripts * Add in the old years * Update copyright information Approved-by: Cevap --- test/functional/ionlibtest.py | 3 ++- test/functional/scriptdebug.py | 3 ++- test/functional/test_framework/__init__.py | 1 + test/functional/test_framework/comptool.py | 1 + test/functional/test_framework/ionlib.py | 1 + test/functional/test_framework/mininode.py | 2 ++ test/functional/test_framework/test_framework.py | 1 + test/functional/test_framework/test_node.py | 1 + test/functional/test_runner.py | 1 + 9 files changed, 12 insertions(+), 2 deletions(-) diff --git a/test/functional/ionlibtest.py b/test/functional/ionlibtest.py index f75964ddce74e..ba3f69d7d2eba 100755 --- a/test/functional/ionlibtest.py +++ b/test/functional/ionlibtest.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # Copyright (c) 2015-2018 The Bitcoin Unlimited developers +# Copyright (c) 2020 The Ion Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. @@ -236,4 +237,4 @@ def Test(): binpath = findBitcoind() flags.append("--srcdir=%s" % binpath) ionlib.init(binpath + os.sep + ".libs" + os.sep + "libioncore.so") - t.main(flags, bitcoinConf, None) \ No newline at end of file + t.main(flags, bitcoinConf, None) diff --git a/test/functional/scriptdebug.py b/test/functional/scriptdebug.py index 6c50affd99b02..21a5d59a72fcc 100644 --- a/test/functional/scriptdebug.py +++ b/test/functional/scriptdebug.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # Copyright (c) 2015-2018 The Bitcoin Unlimited developers +# Copyright (c) 2020 The Ion Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. import test_framework.loginit @@ -227,4 +228,4 @@ def Test(): binpath = findBitcoind() flags.append("--srcdir=%s" % binpath) ionlib.init(binpath + os.sep + ".libs" + os.sep + "libioncore.so") - t.main(flags, bitcoinConf, None) \ No newline at end of file + t.main(flags, bitcoinConf, None) diff --git a/test/functional/test_framework/__init__.py b/test/functional/test_framework/__init__.py index eee1b1f22cd8b..e334b8becf281 100644 --- a/test/functional/test_framework/__init__.py +++ b/test/functional/test_framework/__init__.py @@ -1,4 +1,5 @@ # Copyright (c) 2018 The Bitcoin Unlimited developers +# Copyright (c) 2020 The Ion Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. diff --git a/test/functional/test_framework/comptool.py b/test/functional/test_framework/comptool.py index 0bdd05a93a13c..7a823f7b88825 100755 --- a/test/functional/test_framework/comptool.py +++ b/test/functional/test_framework/comptool.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # Copyright (c) 2015-2016 The Bitcoin Core developers +# Copyright (c) 2020 The Ion Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Compare two or more ionds to each other. diff --git a/test/functional/test_framework/ionlib.py b/test/functional/test_framework/ionlib.py index 5089c72f4dd45..97aec520693eb 100644 --- a/test/functional/test_framework/ionlib.py +++ b/test/functional/test_framework/ionlib.py @@ -1,4 +1,5 @@ # Copyright (c) 2018 The Bitcoin Unlimited developers +# Copyright (c) 2020 The Ion Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. from ctypes import * diff --git a/test/functional/test_framework/mininode.py b/test/functional/test_framework/mininode.py index 5eb790220f140..458cdf98ef333 100755 --- a/test/functional/test_framework/mininode.py +++ b/test/functional/test_framework/mininode.py @@ -2,6 +2,7 @@ # Copyright (c) 2010 ArtForz -- public domain half-a-node # Copyright (c) 2012 Jeff Garzik # Copyright (c) 2010-2016 The Bitcoin Core developers +# Copyright (c) 2020 The Ion Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Ion P2P network half-a-node. @@ -41,6 +42,7 @@ from test_framework.siphash import siphash256 from test_framework.util import hex_str_to_bytes, bytes_to_hex_str, wait_until +# Available in contrib/ion_hash import ion_hash BIP0031_VERSION = 60000 diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index 4bc8ea0ccb25a..b30fded4548ef 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -1,6 +1,7 @@ #!/usr/bin/env python3 # Copyright (c) 2014-2016 The Bitcoin Core developers # Copyright (c) 2014-2019 The Dash Core developers +# Copyright (c) 2020 The Ion Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Base class for RPC testing.""" diff --git a/test/functional/test_framework/test_node.py b/test/functional/test_framework/test_node.py index d7f34166d7a1e..7e2b1f1b6f6cd 100755 --- a/test/functional/test_framework/test_node.py +++ b/test/functional/test_framework/test_node.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # Copyright (c) 2017 The Bitcoin Core developers +# Copyright (c) 2020 The Ion Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Class for iond node under test""" diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index fe1b81bb61bb6..1292aeb6243f3 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -1,5 +1,6 @@ #!/usr/bin/env python3 # Copyright (c) 2014-2016 The Bitcoin Core developers +# Copyright (c) 2020 The Ion Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. """Run regression test suite.