Skip to content

Commit e3de5f5

Browse files
committed
Updated copyright notices globally (closes #288)
1 parent 2453ba6 commit e3de5f5

File tree

585 files changed

+891
-23
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

585 files changed

+891
-23
lines changed

COPYING

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ The MIT License (MIT)
22

33
Copyright (c) 2009-2017 The Bitcoin Core developers
44
Copyright (c) 2014-2017 The Dash Core developers
5-
Copyright (c) 2017-2018 The Energi Core developers
5+
Copyright (c) 2017-2019 The Energi Core developers
66

77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Copyright (c) 2013-2016 The Bitcoin Core developers
22
# Copyright (c) 2014-2018 The Dash Core developers
3+
# Copyright (c) 2017-2019 The Energi Core developers
34
# Distributed under the MIT software license, see the accompanying
45
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
56

autogen.sh

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/bin/sh
2+
#
3+
# Copyright (c) 2017-2019 The Energi Core developers
4+
#
25

36
srcdir="$(dirname $0)"
47

contrib/devtools/copyright_header.py

+25-12
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
]
3939
EXCLUDE_COMPILED = re.compile('|'.join([fnmatch.translate(m) for m in EXCLUDE]))
4040

41-
INCLUDE = ['*.h', '*.cpp', '*.cc', '*.c', '*.py']
41+
INCLUDE = ['*.h', '*.hpp', '*.cpp', '*.cc', '*.c', '*.py', 'Makefile.*', 'configure.ac']
4242
INCLUDE_COMPILED = re.compile('|'.join([fnmatch.translate(m) for m in INCLUDE]))
4343

4444
def applies_to_file(filename):
@@ -69,6 +69,8 @@ def get_filenames_to_examine():
6969
COPYRIGHT_WITHOUT_C = 'Copyright'
7070
ANY_COPYRIGHT_STYLE = '(%s|%s)' % (COPYRIGHT_WITH_C, COPYRIGHT_WITHOUT_C)
7171

72+
MIN_INSERT_YEAR = '2017'
73+
LAST_INSERT_YEAR = datetime.date.today().year
7274
YEAR = "20[0-9][0-9]"
7375
YEAR_RANGE = '(%s)(-%s)?' % (YEAR, YEAR)
7476
YEAR_LIST = '(%s)(, %s)+' % (YEAR, YEAR)
@@ -82,6 +84,7 @@ def compile_copyright_regex(copyright_style, year_style, name):
8284
return re.compile('%s %s %s' % (copyright_style, year_style, name))
8385

8486
EXPECTED_HOLDER_NAMES = [
87+
"The Energi Core developers\n",
8588
"Satoshi Nakamoto\n",
8689
"The Bitcoin Core developers\n",
8790
"The Bitcoin Core developers \n",
@@ -340,7 +343,7 @@ def write_file_lines(filename, file_lines):
340343
COPYRIGHT = 'Copyright \(c\)'
341344
YEAR = "20[0-9][0-9]"
342345
YEAR_RANGE = '(%s)(-%s)?' % (YEAR, YEAR)
343-
HOLDER = 'The Bitcoin Core developers'
346+
HOLDER = 'The Energi Core developers'
344347
UPDATEABLE_LINE_COMPILED = re.compile(' '.join([COPYRIGHT, YEAR_RANGE, HOLDER]))
345348

346349
def get_updatable_copyright_line(file_lines):
@@ -408,24 +411,24 @@ def exec_update_header_year(base_directory):
408411
################################################################################
409412

410413
UPDATE_USAGE = """
411-
Updates all the copyright headers of "The Bitcoin Core developers" which were
414+
Updates all the copyright headers of "The Energi Core developers" which were
412415
changed in a year more recent than is listed. For example:
413416
414-
// Copyright (c) <firstYear>-<lastYear> The Bitcoin Core developers
417+
// Copyright (c) <firstYear>-<lastYear> The Energi Core developers
415418
416419
will be updated to:
417420
418-
// Copyright (c) <firstYear>-<lastModifiedYear> The Bitcoin Core developers
421+
// Copyright (c) <firstYear>-<lastModifiedYear> The Energi Core developers
419422
420423
where <lastModifiedYear> is obtained from the 'git log' history.
421424
422425
This subcommand also handles copyright headers that have only a single year. In those cases:
423426
424-
// Copyright (c) <year> The Bitcoin Core developers
427+
// Copyright (c) <year> The Energi Core developers
425428
426429
will be updated to:
427430
428-
// Copyright (c) <year>-<lastModifiedYear> The Bitcoin Core developers
431+
// Copyright (c) <year>-<lastModifiedYear> The Energi Core developers
429432
430433
where the update is appropriate.
431434
@@ -458,7 +461,7 @@ def get_header_lines(header, start_year, end_year):
458461
return [line + '\n' for line in lines]
459462

460463
CPP_HEADER = '''
461-
// Copyright (c) %s The Bitcoin Core developers
464+
// Copyright (c) %s The Energi Core developers
462465
// Distributed under the MIT software license, see the accompanying
463466
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
464467
'''
@@ -467,7 +470,7 @@ def get_cpp_header_lines_to_insert(start_year, end_year):
467470
return reversed(get_header_lines(CPP_HEADER, start_year, end_year))
468471

469472
PYTHON_HEADER = '''
470-
# Copyright (c) %s The Bitcoin Core developers
473+
# Copyright (c) %s The Energi Core developers
471474
# Distributed under the MIT software license, see the accompanying
472475
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
473476
'''
@@ -509,21 +512,31 @@ def insert_python_header(filename, file_lines, start_year, end_year):
509512
insert_idx = 0
510513
header_lines = get_python_header_lines_to_insert(start_year, end_year)
511514
for line in header_lines:
515+
if line in file_lines[:30]:
516+
continue
512517
file_lines.insert(insert_idx, line)
513518
write_file_lines(filename, file_lines)
514519

515520
def insert_cpp_header(filename, file_lines, start_year, end_year):
516521
header_lines = get_cpp_header_lines_to_insert(start_year, end_year)
517522
for line in header_lines:
523+
if line in file_lines[:30]:
524+
continue
518525
file_lines.insert(0, line)
519526
write_file_lines(filename, file_lines)
520527

521528
def exec_insert_header(filename, style):
522529
file_lines = read_file_lines(filename)
523530
if file_already_has_core_copyright(file_lines):
524-
sys.exit('*** %s already has a copyright by The Bitcoin Core developers'
531+
sys.exit('*** %s already has a copyright by The Energi Core developers'
525532
% (filename))
526533
start_year, end_year = get_git_change_year_range(filename)
534+
535+
if start_year < MIN_INSERT_YEAR:
536+
start_year = MIN_INSERT_YEAR
537+
538+
end_year = LAST_INSERT_YEAR
539+
527540
if style == 'python':
528541
insert_python_header(filename, file_lines, start_year, end_year)
529542
else:
@@ -534,7 +547,7 @@ def exec_insert_header(filename, style):
534547
################################################################################
535548

536549
INSERT_USAGE = """
537-
Inserts a copyright header for "The Bitcoin Core developers" at the top of the
550+
Inserts a copyright header for "The Energi Core developers" at the top of the
538551
file in either Python or C++ style as determined by the file extension. If the
539552
file is a Python file and it has a '#!' starting the first line, the header is
540553
inserted in the line below it.
@@ -548,7 +561,7 @@ def exec_insert_header(filename, style):
548561
549562
"<current_year>"
550563
551-
If the file already has a copyright for "The Bitcoin Core developers", the
564+
If the file already has a copyright for "The Energi Core developers", the
552565
script will exit.
553566
554567
Usage:

qa/pull-tester/rpc-tests.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2014-2019 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/abandonconflict.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2016-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/addressindex.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2016-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2015 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/assumevalid.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2017 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/bip65-cltv-p2p.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2015-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/bip65-cltv.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2015-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/bip68-112-113-p2p.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2016-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2015 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/bip68-sequence.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/bip9-softforks.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2016-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2015 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/bipdersig-p2p.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2015-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/bipdersig.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/blockchain.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/create_cache.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2016 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/decodescript.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2015-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/disablewallet.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2015-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/forknotify.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2014-2017 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/fundrawtransaction-hd.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2017-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2015 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/fundrawtransaction.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/getblocktemplate_longpoll.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2014-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/getblocktemplate_proposals.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2014-2017 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/getchaintips.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2014-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/httpbasics.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2014-2016 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/import-rescan.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2016-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/importmulti.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2016-2017 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/importprunedfunds.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2016-2017 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/invalidateblock.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/invalidblockrequest.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2015-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/invalidtxrequest.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2015-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2015-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/keypool-hd.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2017-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2015 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

qa/rpc-tests/keypool.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python3
2+
# Copyright (c) 2014-2018 The Energi Core developers
3+
# Distributed under the MIT software license, see the accompanying
4+
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
25
# Copyright (c) 2014-2016 The Bitcoin Core developers
36
# Distributed under the MIT software license, see the accompanying
47
# file COPYING or http://www.opensource.org/licenses/mit-license.php.

0 commit comments

Comments
 (0)