diff --git a/python/helper-scripts/relicence.py b/python/helper-scripts/relicence.py index 6c10649995..94e3c65319 100755 --- a/python/helper-scripts/relicence.py +++ b/python/helper-scripts/relicence.py @@ -3,7 +3,7 @@ LICENSE_NOTICE = """\ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 @@ -19,19 +19,35 @@ LICENSE_NOTICE = """\ """ +SHEBANG_HEADER = """\ +#!/usr/bin/env python3 + +""" + EXCLUDE_FILES = ["trezorlib/__init__.py", "trezorlib/_ed25519.py"] def one_file(fp): lines = list(fp) new = lines[:] + shebang_header = False + + if new[0].startswith("#!"): + shebang_header = True + new.pop(0) + if not new[0].strip(): + new.pop(0) + while new and new[0][0] == "#": new.pop(0) while new and new[0].strip() == "": new.pop(0) - data = "".join([LICENSE_NOTICE] + new) + new.insert(0, LICENSE_NOTICE) + if shebang_header: + new.insert(0, SHEBANG_HEADER) + data = "".join(new) fp.seek(0) fp.write(data) @@ -42,6 +58,8 @@ import glob import os for fn in glob.glob("trezorlib/**/*.py", recursive=True): + if fn.startswith("trezorlib/messages/"): + continue if fn in EXCLUDE_FILES: continue statinfo = os.stat(fn) diff --git a/python/trezorlib/btc.py b/python/trezorlib/btc.py index c360528506..357f12f220 100644 --- a/python/trezorlib/btc.py +++ b/python/trezorlib/btc.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/cardano.py b/python/trezorlib/cardano.py index dacf1957bd..18e744dc84 100644 --- a/python/trezorlib/cardano.py +++ b/python/trezorlib/cardano.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/ckd_public.py b/python/trezorlib/ckd_public.py index 0bb1ea9c16..81ba377df0 100644 --- a/python/trezorlib/ckd_public.py +++ b/python/trezorlib/ckd_public.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/client.py b/python/trezorlib/client.py index d979c1c13d..31dd1b0324 100644 --- a/python/trezorlib/client.py +++ b/python/trezorlib/client.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/coins.py b/python/trezorlib/coins.py index e0910bde33..32ee1a3829 100644 --- a/python/trezorlib/coins.py +++ b/python/trezorlib/coins.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/cosi.py b/python/trezorlib/cosi.py index 8bb4f4ea88..057693c9a1 100644 --- a/python/trezorlib/cosi.py +++ b/python/trezorlib/cosi.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/debuglink.py b/python/trezorlib/debuglink.py index ae877bb268..2a737d3f82 100644 --- a/python/trezorlib/debuglink.py +++ b/python/trezorlib/debuglink.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/device.py b/python/trezorlib/device.py index f8bf5dafd5..245c468bc7 100644 --- a/python/trezorlib/device.py +++ b/python/trezorlib/device.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/eos.py b/python/trezorlib/eos.py index 5227db34e6..0a8f8791f1 100644 --- a/python/trezorlib/eos.py +++ b/python/trezorlib/eos.py @@ -1,3 +1,19 @@ +# This file is part of the Trezor project. +# +# Copyright (C) 2012-2019 SatoshiLabs and contributors +# +# This library is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the License along with this library. +# If not, see . + from datetime import datetime from . import messages diff --git a/python/trezorlib/ethereum.py b/python/trezorlib/ethereum.py index cad1e7e25f..da28442812 100644 --- a/python/trezorlib/ethereum.py +++ b/python/trezorlib/ethereum.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/exceptions.py b/python/trezorlib/exceptions.py index f95271eef4..10b778bfee 100644 --- a/python/trezorlib/exceptions.py +++ b/python/trezorlib/exceptions.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/firmware.py b/python/trezorlib/firmware.py index 9e7bb21ee8..384ad51102 100644 --- a/python/trezorlib/firmware.py +++ b/python/trezorlib/firmware.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/lisk.py b/python/trezorlib/lisk.py index 7e8ca34643..2cd0354d17 100644 --- a/python/trezorlib/lisk.py +++ b/python/trezorlib/lisk.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/log.py b/python/trezorlib/log.py index 50f778a12d..e0314cd1fe 100644 --- a/python/trezorlib/log.py +++ b/python/trezorlib/log.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/mapping.py b/python/trezorlib/mapping.py index 11c94cb06e..64c3b0a3d4 100644 --- a/python/trezorlib/mapping.py +++ b/python/trezorlib/mapping.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/misc.py b/python/trezorlib/misc.py index 11ef415650..a9de39af82 100644 --- a/python/trezorlib/misc.py +++ b/python/trezorlib/misc.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/monero.py b/python/trezorlib/monero.py index 3c815f8249..1eea483e8a 100644 --- a/python/trezorlib/monero.py +++ b/python/trezorlib/monero.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/nem.py b/python/trezorlib/nem.py index 1d27e30fb7..57f03e50de 100644 --- a/python/trezorlib/nem.py +++ b/python/trezorlib/nem.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/protobuf.py b/python/trezorlib/protobuf.py index 21d49b8877..77d817501a 100644 --- a/python/trezorlib/protobuf.py +++ b/python/trezorlib/protobuf.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/qt/pinmatrix.py b/python/trezorlib/qt/pinmatrix.py index a03e931b8a..f7a7f15719 100644 --- a/python/trezorlib/qt/pinmatrix.py +++ b/python/trezorlib/qt/pinmatrix.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/ripple.py b/python/trezorlib/ripple.py index 9e8c6c70c9..48529b0fc4 100644 --- a/python/trezorlib/ripple.py +++ b/python/trezorlib/ripple.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/stellar.py b/python/trezorlib/stellar.py index 2471704be0..f0fb6f7d0a 100644 --- a/python/trezorlib/stellar.py +++ b/python/trezorlib/stellar.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/burn_tests/burntest_t1.py b/python/trezorlib/tests/burn_tests/burntest_t1.py index c59782a2b0..b4b7a91a56 100755 --- a/python/trezorlib/tests/burn_tests/burntest_t1.py +++ b/python/trezorlib/tests/burn_tests/burntest_t1.py @@ -2,7 +2,7 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/burn_tests/burntest_t2.py b/python/trezorlib/tests/burn_tests/burntest_t2.py index 3ed9b87a0d..58e7ab5cc2 100755 --- a/python/trezorlib/tests/burn_tests/burntest_t2.py +++ b/python/trezorlib/tests/burn_tests/burntest_t2.py @@ -2,7 +2,7 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/common.py b/python/trezorlib/tests/device_tests/common.py index 519a4e5227..09276ed0d1 100644 --- a/python/trezorlib/tests/device_tests/common.py +++ b/python/trezorlib/tests/device_tests/common.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/conftest.py b/python/trezorlib/tests/device_tests/conftest.py index ac51dbc32d..1c1d81743f 100644 --- a/python/trezorlib/tests/device_tests/conftest.py +++ b/python/trezorlib/tests/device_tests/conftest.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_basic.py b/python/trezorlib/tests/device_tests/test_basic.py index 707dc014b8..64ecb0d572 100644 --- a/python/trezorlib/tests/device_tests/test_basic.py +++ b/python/trezorlib/tests/device_tests/test_basic.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_bip32_speed.py b/python/trezorlib/tests/device_tests/test_bip32_speed.py index 91072b238a..ae1fc679e0 100644 --- a/python/trezorlib/tests/device_tests/test_bip32_speed.py +++ b/python/trezorlib/tests/device_tests/test_bip32_speed.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_cancel.py b/python/trezorlib/tests/device_tests/test_cancel.py index 1259d67f9c..db6a178e61 100644 --- a/python/trezorlib/tests/device_tests/test_cancel.py +++ b/python/trezorlib/tests/device_tests/test_cancel.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_cosi.py b/python/trezorlib/tests/device_tests/test_cosi.py index c8117fd7e8..30d4931563 100644 --- a/python/trezorlib/tests/device_tests/test_cosi.py +++ b/python/trezorlib/tests/device_tests/test_cosi.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_debuglink.py b/python/trezorlib/tests/device_tests/test_debuglink.py index 4a91fdfaf4..f3e21a0001 100644 --- a/python/trezorlib/tests/device_tests/test_debuglink.py +++ b/python/trezorlib/tests/device_tests/test_debuglink.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_applysettings.py b/python/trezorlib/tests/device_tests/test_msg_applysettings.py index bfe070f509..54e506c091 100644 --- a/python/trezorlib/tests/device_tests/test_msg_applysettings.py +++ b/python/trezorlib/tests/device_tests/test_msg_applysettings.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_cardano_get_address.py b/python/trezorlib/tests/device_tests/test_msg_cardano_get_address.py index 355135b62d..5977f1470c 100644 --- a/python/trezorlib/tests/device_tests/test_msg_cardano_get_address.py +++ b/python/trezorlib/tests/device_tests/test_msg_cardano_get_address.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_cardano_get_public_key.py b/python/trezorlib/tests/device_tests/test_msg_cardano_get_public_key.py index 32adf34b76..503bd33c44 100644 --- a/python/trezorlib/tests/device_tests/test_msg_cardano_get_public_key.py +++ b/python/trezorlib/tests/device_tests/test_msg_cardano_get_public_key.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_cardano_sign_transaction.py b/python/trezorlib/tests/device_tests/test_msg_cardano_sign_transaction.py index 632ba5ad0d..0808e8782e 100644 --- a/python/trezorlib/tests/device_tests/test_msg_cardano_sign_transaction.py +++ b/python/trezorlib/tests/device_tests/test_msg_cardano_sign_transaction.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_changepin.py b/python/trezorlib/tests/device_tests/test_msg_changepin.py index 4abcc609b7..cabc6ffeff 100644 --- a/python/trezorlib/tests/device_tests/test_msg_changepin.py +++ b/python/trezorlib/tests/device_tests/test_msg_changepin.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_cipherkeyvalue.py b/python/trezorlib/tests/device_tests/test_msg_cipherkeyvalue.py index 39d89361d6..598a750f00 100644 --- a/python/trezorlib/tests/device_tests/test_msg_cipherkeyvalue.py +++ b/python/trezorlib/tests/device_tests/test_msg_cipherkeyvalue.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_clearsession.py b/python/trezorlib/tests/device_tests/test_msg_clearsession.py index e0c11c186c..4554eb7c65 100644 --- a/python/trezorlib/tests/device_tests/test_msg_clearsession.py +++ b/python/trezorlib/tests/device_tests/test_msg_clearsession.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_eos_get_public_key.py b/python/trezorlib/tests/device_tests/test_msg_eos_get_public_key.py index f7ff9f7556..4bfc70b218 100644 --- a/python/trezorlib/tests/device_tests/test_msg_eos_get_public_key.py +++ b/python/trezorlib/tests/device_tests/test_msg_eos_get_public_key.py @@ -1,3 +1,19 @@ +# This file is part of the Trezor project. +# +# Copyright (C) 2012-2019 SatoshiLabs and contributors +# +# This library is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. +# +# You should have received a copy of the License along with this library. +# If not, see . + import pytest from trezorlib.eos import get_public_key diff --git a/python/trezorlib/tests/device_tests/test_msg_eos_signtx.py b/python/trezorlib/tests/device_tests/test_msg_eos_signtx.py index 128721645d..673e3a31c0 100644 --- a/python/trezorlib/tests/device_tests/test_msg_eos_signtx.py +++ b/python/trezorlib/tests/device_tests/test_msg_eos_signtx.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_ethereum_getaddress.py b/python/trezorlib/tests/device_tests/test_msg_ethereum_getaddress.py index 8f6ff2708f..614344f707 100644 --- a/python/trezorlib/tests/device_tests/test_msg_ethereum_getaddress.py +++ b/python/trezorlib/tests/device_tests/test_msg_ethereum_getaddress.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_ethereum_getpublickey.py b/python/trezorlib/tests/device_tests/test_msg_ethereum_getpublickey.py index 19aae82ac4..e45493d3a4 100644 --- a/python/trezorlib/tests/device_tests/test_msg_ethereum_getpublickey.py +++ b/python/trezorlib/tests/device_tests/test_msg_ethereum_getpublickey.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_ethereum_signmessage.py b/python/trezorlib/tests/device_tests/test_msg_ethereum_signmessage.py index df3cf6ebc7..529b432dab 100644 --- a/python/trezorlib/tests/device_tests/test_msg_ethereum_signmessage.py +++ b/python/trezorlib/tests/device_tests/test_msg_ethereum_signmessage.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_ethereum_signtx.py b/python/trezorlib/tests/device_tests/test_msg_ethereum_signtx.py index 46451520ad..47f3386d75 100644 --- a/python/trezorlib/tests/device_tests/test_msg_ethereum_signtx.py +++ b/python/trezorlib/tests/device_tests/test_msg_ethereum_signtx.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_ethereum_signtx_eip155.py b/python/trezorlib/tests/device_tests/test_msg_ethereum_signtx_eip155.py index 014d054afd..7d411407f5 100644 --- a/python/trezorlib/tests/device_tests/test_msg_ethereum_signtx_eip155.py +++ b/python/trezorlib/tests/device_tests/test_msg_ethereum_signtx_eip155.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_ethereum_verifymessage.py b/python/trezorlib/tests/device_tests/test_msg_ethereum_verifymessage.py index 9a998b0de0..138a856dac 100644 --- a/python/trezorlib/tests/device_tests/test_msg_ethereum_verifymessage.py +++ b/python/trezorlib/tests/device_tests/test_msg_ethereum_verifymessage.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_getaddress.py b/python/trezorlib/tests/device_tests/test_msg_getaddress.py index 80cd0e36d9..403e1fa9b0 100644 --- a/python/trezorlib/tests/device_tests/test_msg_getaddress.py +++ b/python/trezorlib/tests/device_tests/test_msg_getaddress.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_getaddress_segwit.py b/python/trezorlib/tests/device_tests/test_msg_getaddress_segwit.py index d449180b16..f53e268eb3 100644 --- a/python/trezorlib/tests/device_tests/test_msg_getaddress_segwit.py +++ b/python/trezorlib/tests/device_tests/test_msg_getaddress_segwit.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_getaddress_segwit_native.py b/python/trezorlib/tests/device_tests/test_msg_getaddress_segwit_native.py index d8b575905b..a287f75f4b 100644 --- a/python/trezorlib/tests/device_tests/test_msg_getaddress_segwit_native.py +++ b/python/trezorlib/tests/device_tests/test_msg_getaddress_segwit_native.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_getaddress_show.py b/python/trezorlib/tests/device_tests/test_msg_getaddress_show.py index 53729fb7ff..5f3a0391be 100644 --- a/python/trezorlib/tests/device_tests/test_msg_getaddress_show.py +++ b/python/trezorlib/tests/device_tests/test_msg_getaddress_show.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_getecdhsessionkey.py b/python/trezorlib/tests/device_tests/test_msg_getecdhsessionkey.py index 270b934bd8..381031e451 100644 --- a/python/trezorlib/tests/device_tests/test_msg_getecdhsessionkey.py +++ b/python/trezorlib/tests/device_tests/test_msg_getecdhsessionkey.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_getentropy.py b/python/trezorlib/tests/device_tests/test_msg_getentropy.py index 9711414be9..e4a5c58d1f 100644 --- a/python/trezorlib/tests/device_tests/test_msg_getentropy.py +++ b/python/trezorlib/tests/device_tests/test_msg_getentropy.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_getpublickey.py b/python/trezorlib/tests/device_tests/test_msg_getpublickey.py index 287d496327..a3c42605d8 100644 --- a/python/trezorlib/tests/device_tests/test_msg_getpublickey.py +++ b/python/trezorlib/tests/device_tests/test_msg_getpublickey.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_getpublickey_curve.py b/python/trezorlib/tests/device_tests/test_msg_getpublickey_curve.py index 7f350538fe..ce3cde10d8 100644 --- a/python/trezorlib/tests/device_tests/test_msg_getpublickey_curve.py +++ b/python/trezorlib/tests/device_tests/test_msg_getpublickey_curve.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_lisk_getaddress.py b/python/trezorlib/tests/device_tests/test_msg_lisk_getaddress.py index 571afbf916..1c1bcafa6a 100644 --- a/python/trezorlib/tests/device_tests/test_msg_lisk_getaddress.py +++ b/python/trezorlib/tests/device_tests/test_msg_lisk_getaddress.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_lisk_getpublickey.py b/python/trezorlib/tests/device_tests/test_msg_lisk_getpublickey.py index aea8d72843..758835668b 100644 --- a/python/trezorlib/tests/device_tests/test_msg_lisk_getpublickey.py +++ b/python/trezorlib/tests/device_tests/test_msg_lisk_getpublickey.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_lisk_signmessage.py b/python/trezorlib/tests/device_tests/test_msg_lisk_signmessage.py index 32926b20fd..dedf960a9a 100644 --- a/python/trezorlib/tests/device_tests/test_msg_lisk_signmessage.py +++ b/python/trezorlib/tests/device_tests/test_msg_lisk_signmessage.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_lisk_signtx.py b/python/trezorlib/tests/device_tests/test_msg_lisk_signtx.py index f458019fe1..601aa59280 100644 --- a/python/trezorlib/tests/device_tests/test_msg_lisk_signtx.py +++ b/python/trezorlib/tests/device_tests/test_msg_lisk_signtx.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 @@ -13,6 +13,7 @@ # # You should have received a copy of the License along with this library. # If not, see . + import pytest from trezorlib import lisk, messages as proto diff --git a/python/trezorlib/tests/device_tests/test_msg_lisk_verifymessage.py b/python/trezorlib/tests/device_tests/test_msg_lisk_verifymessage.py index dec148feec..0d4727c413 100644 --- a/python/trezorlib/tests/device_tests/test_msg_lisk_verifymessage.py +++ b/python/trezorlib/tests/device_tests/test_msg_lisk_verifymessage.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_loaddevice.py b/python/trezorlib/tests/device_tests/test_msg_loaddevice.py index ed178c1460..fe3cfeedb8 100644 --- a/python/trezorlib/tests/device_tests/test_msg_loaddevice.py +++ b/python/trezorlib/tests/device_tests/test_msg_loaddevice.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_loaddevice_xprv.py b/python/trezorlib/tests/device_tests/test_msg_loaddevice_xprv.py index 13e2978f68..60e49cfc9f 100644 --- a/python/trezorlib/tests/device_tests/test_msg_loaddevice_xprv.py +++ b/python/trezorlib/tests/device_tests/test_msg_loaddevice_xprv.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_monero_getaddress.py b/python/trezorlib/tests/device_tests/test_msg_monero_getaddress.py index ff61d63233..36e3e955cf 100644 --- a/python/trezorlib/tests/device_tests/test_msg_monero_getaddress.py +++ b/python/trezorlib/tests/device_tests/test_msg_monero_getaddress.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_monero_getwatchkey.py b/python/trezorlib/tests/device_tests/test_msg_monero_getwatchkey.py index f6bd5ce1fa..c58883c05a 100644 --- a/python/trezorlib/tests/device_tests/test_msg_monero_getwatchkey.py +++ b/python/trezorlib/tests/device_tests/test_msg_monero_getwatchkey.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_nem_getaddress.py b/python/trezorlib/tests/device_tests/test_msg_nem_getaddress.py index 3b92e84daa..0f0942f85c 100644 --- a/python/trezorlib/tests/device_tests/test_msg_nem_getaddress.py +++ b/python/trezorlib/tests/device_tests/test_msg_nem_getaddress.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics.py b/python/trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics.py index 70985e0eb8..2208d2b901 100644 --- a/python/trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics.py +++ b/python/trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics_t2.py b/python/trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics_t2.py index f204fc41a2..b019a8bd6b 100644 --- a/python/trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics_t2.py +++ b/python/trezorlib/tests/device_tests/test_msg_nem_signtx_mosaics_t2.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_nem_signtx_multisig.py b/python/trezorlib/tests/device_tests/test_msg_nem_signtx_multisig.py index 3f21d35b4e..a24f59642d 100644 --- a/python/trezorlib/tests/device_tests/test_msg_nem_signtx_multisig.py +++ b/python/trezorlib/tests/device_tests/test_msg_nem_signtx_multisig.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_nem_signtx_others.py b/python/trezorlib/tests/device_tests/test_msg_nem_signtx_others.py index 7d53b8d4c7..a7694a8aa2 100644 --- a/python/trezorlib/tests/device_tests/test_msg_nem_signtx_others.py +++ b/python/trezorlib/tests/device_tests/test_msg_nem_signtx_others.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_nem_signtx_transfers.py b/python/trezorlib/tests/device_tests/test_msg_nem_signtx_transfers.py index 60391940fe..61231539da 100644 --- a/python/trezorlib/tests/device_tests/test_msg_nem_signtx_transfers.py +++ b/python/trezorlib/tests/device_tests/test_msg_nem_signtx_transfers.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_ping.py b/python/trezorlib/tests/device_tests/test_msg_ping.py index 6a16197e4a..da8a906f53 100644 --- a/python/trezorlib/tests/device_tests/test_msg_ping.py +++ b/python/trezorlib/tests/device_tests/test_msg_ping.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_recoverydevice.py b/python/trezorlib/tests/device_tests/test_msg_recoverydevice.py index 342c238d1a..af3f7b3118 100644 --- a/python/trezorlib/tests/device_tests/test_msg_recoverydevice.py +++ b/python/trezorlib/tests/device_tests/test_msg_recoverydevice.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_recoverydevice_dryrun.py b/python/trezorlib/tests/device_tests/test_msg_recoverydevice_dryrun.py index d9284e61c1..4f03ff623c 100644 --- a/python/trezorlib/tests/device_tests/test_msg_recoverydevice_dryrun.py +++ b/python/trezorlib/tests/device_tests/test_msg_recoverydevice_dryrun.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_recoverydevice_t2.py b/python/trezorlib/tests/device_tests/test_msg_recoverydevice_t2.py index 8748e6a006..823a4c6ffd 100644 --- a/python/trezorlib/tests/device_tests/test_msg_recoverydevice_t2.py +++ b/python/trezorlib/tests/device_tests/test_msg_recoverydevice_t2.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_resetdevice.py b/python/trezorlib/tests/device_tests/test_msg_resetdevice.py index 8b57837ac5..298ebc5488 100644 --- a/python/trezorlib/tests/device_tests/test_msg_resetdevice.py +++ b/python/trezorlib/tests/device_tests/test_msg_resetdevice.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_resetdevice_nobackup.py b/python/trezorlib/tests/device_tests/test_msg_resetdevice_nobackup.py index 61b93c57d2..a72b3d0057 100644 --- a/python/trezorlib/tests/device_tests/test_msg_resetdevice_nobackup.py +++ b/python/trezorlib/tests/device_tests/test_msg_resetdevice_nobackup.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_resetdevice_skipbackup.py b/python/trezorlib/tests/device_tests/test_msg_resetdevice_skipbackup.py index 7da7858c05..dbe1d3f4f1 100644 --- a/python/trezorlib/tests/device_tests/test_msg_resetdevice_skipbackup.py +++ b/python/trezorlib/tests/device_tests/test_msg_resetdevice_skipbackup.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_resetdevice_t2.py b/python/trezorlib/tests/device_tests/test_msg_resetdevice_t2.py index e515bb01e8..1af2f17201 100644 --- a/python/trezorlib/tests/device_tests/test_msg_resetdevice_t2.py +++ b/python/trezorlib/tests/device_tests/test_msg_resetdevice_t2.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_ripple_get_address.py b/python/trezorlib/tests/device_tests/test_msg_ripple_get_address.py index 6bdedda23f..d5cf762d96 100644 --- a/python/trezorlib/tests/device_tests/test_msg_ripple_get_address.py +++ b/python/trezorlib/tests/device_tests/test_msg_ripple_get_address.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py b/python/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py index 61b139d1b0..03033bcb57 100644 --- a/python/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py +++ b/python/trezorlib/tests/device_tests/test_msg_ripple_sign_tx.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signidentity.py b/python/trezorlib/tests/device_tests/test_msg_signidentity.py index b1fcd46015..f91294ee3c 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signidentity.py +++ b/python/trezorlib/tests/device_tests/test_msg_signidentity.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signmessage.py b/python/trezorlib/tests/device_tests/test_msg_signmessage.py index 4c329ba006..b598802e6e 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signmessage.py +++ b/python/trezorlib/tests/device_tests/test_msg_signmessage.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signmessage_decred.py b/python/trezorlib/tests/device_tests/test_msg_signmessage_decred.py index 9a9087da7a..6cf230f313 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signmessage_decred.py +++ b/python/trezorlib/tests/device_tests/test_msg_signmessage_decred.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signmessage_segwit.py b/python/trezorlib/tests/device_tests/test_msg_signmessage_segwit.py index 20a3b747c4..10a8b7af48 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signmessage_segwit.py +++ b/python/trezorlib/tests/device_tests/test_msg_signmessage_segwit.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signmessage_segwit_native.py b/python/trezorlib/tests/device_tests/test_msg_signmessage_segwit_native.py index 1b0b0e3be0..ac09bc3c9c 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signmessage_segwit_native.py +++ b/python/trezorlib/tests/device_tests/test_msg_signmessage_segwit_native.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signtx.py b/python/trezorlib/tests/device_tests/test_msg_signtx.py index e07059c6b2..83b0f03ab9 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signtx.py +++ b/python/trezorlib/tests/device_tests/test_msg_signtx.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signtx_bcash.py b/python/trezorlib/tests/device_tests/test_msg_signtx_bcash.py index 772d89f114..07744203a5 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signtx_bcash.py +++ b/python/trezorlib/tests/device_tests/test_msg_signtx_bcash.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signtx_bgold.py b/python/trezorlib/tests/device_tests/test_msg_signtx_bgold.py index b6dc12f453..ff3f802495 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signtx_bgold.py +++ b/python/trezorlib/tests/device_tests/test_msg_signtx_bgold.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signtx_capricoin.py b/python/trezorlib/tests/device_tests/test_msg_signtx_capricoin.py index d6cac1e8fc..d8f5f7bdef 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signtx_capricoin.py +++ b/python/trezorlib/tests/device_tests/test_msg_signtx_capricoin.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signtx_dash.py b/python/trezorlib/tests/device_tests/test_msg_signtx_dash.py index 7fc648fbbb..e420a2292d 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signtx_dash.py +++ b/python/trezorlib/tests/device_tests/test_msg_signtx_dash.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signtx_decred.py b/python/trezorlib/tests/device_tests/test_msg_signtx_decred.py index d4bac3247e..18730ff77e 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signtx_decred.py +++ b/python/trezorlib/tests/device_tests/test_msg_signtx_decred.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signtx_grs.py b/python/trezorlib/tests/device_tests/test_msg_signtx_grs.py index aa3a631d13..674c2ebeb9 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signtx_grs.py +++ b/python/trezorlib/tests/device_tests/test_msg_signtx_grs.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signtx_segwit.py b/python/trezorlib/tests/device_tests/test_msg_signtx_segwit.py index 48307727be..db0db10f39 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signtx_segwit.py +++ b/python/trezorlib/tests/device_tests/test_msg_signtx_segwit.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signtx_segwit_native.py b/python/trezorlib/tests/device_tests/test_msg_signtx_segwit_native.py index 81c796ea30..13932d7d05 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signtx_segwit_native.py +++ b/python/trezorlib/tests/device_tests/test_msg_signtx_segwit_native.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_signtx_zcash.py b/python/trezorlib/tests/device_tests/test_msg_signtx_zcash.py index 098f73d1e8..3cf28dd239 100644 --- a/python/trezorlib/tests/device_tests/test_msg_signtx_zcash.py +++ b/python/trezorlib/tests/device_tests/test_msg_signtx_zcash.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_stellar_get_address.py b/python/trezorlib/tests/device_tests/test_msg_stellar_get_address.py index 764183d410..442a795ebd 100644 --- a/python/trezorlib/tests/device_tests/test_msg_stellar_get_address.py +++ b/python/trezorlib/tests/device_tests/test_msg_stellar_get_address.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py b/python/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py index c00a098f03..7b8ddcd397 100644 --- a/python/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py +++ b/python/trezorlib/tests/device_tests/test_msg_stellar_sign_transaction.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_tezos_getaddress.py b/python/trezorlib/tests/device_tests/test_msg_tezos_getaddress.py index 9b40364480..b8622059b8 100644 --- a/python/trezorlib/tests/device_tests/test_msg_tezos_getaddress.py +++ b/python/trezorlib/tests/device_tests/test_msg_tezos_getaddress.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_tezos_getpublickey.py b/python/trezorlib/tests/device_tests/test_msg_tezos_getpublickey.py index a1ed94a2b0..c05365ea5d 100644 --- a/python/trezorlib/tests/device_tests/test_msg_tezos_getpublickey.py +++ b/python/trezorlib/tests/device_tests/test_msg_tezos_getpublickey.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_tezos_sign_tx.py b/python/trezorlib/tests/device_tests/test_msg_tezos_sign_tx.py index ecd6101a76..8318978e23 100644 --- a/python/trezorlib/tests/device_tests/test_msg_tezos_sign_tx.py +++ b/python/trezorlib/tests/device_tests/test_msg_tezos_sign_tx.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_verifymessage.py b/python/trezorlib/tests/device_tests/test_msg_verifymessage.py index 610059c168..25ec0aa3fd 100644 --- a/python/trezorlib/tests/device_tests/test_msg_verifymessage.py +++ b/python/trezorlib/tests/device_tests/test_msg_verifymessage.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_verifymessage_segwit.py b/python/trezorlib/tests/device_tests/test_msg_verifymessage_segwit.py index d59ff9cfa0..9145268778 100644 --- a/python/trezorlib/tests/device_tests/test_msg_verifymessage_segwit.py +++ b/python/trezorlib/tests/device_tests/test_msg_verifymessage_segwit.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_verifymessage_segwit_native.py b/python/trezorlib/tests/device_tests/test_msg_verifymessage_segwit_native.py index b463b1f865..f267714392 100644 --- a/python/trezorlib/tests/device_tests/test_msg_verifymessage_segwit_native.py +++ b/python/trezorlib/tests/device_tests/test_msg_verifymessage_segwit_native.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_msg_wipedevice.py b/python/trezorlib/tests/device_tests/test_msg_wipedevice.py index 03a11502f2..933f460e85 100644 --- a/python/trezorlib/tests/device_tests/test_msg_wipedevice.py +++ b/python/trezorlib/tests/device_tests/test_msg_wipedevice.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_multisig.py b/python/trezorlib/tests/device_tests/test_multisig.py index 41b48913a2..2933956ae2 100644 --- a/python/trezorlib/tests/device_tests/test_multisig.py +++ b/python/trezorlib/tests/device_tests/test_multisig.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_multisig_change.py b/python/trezorlib/tests/device_tests/test_multisig_change.py index 56b9fc679e..60be1312ae 100644 --- a/python/trezorlib/tests/device_tests/test_multisig_change.py +++ b/python/trezorlib/tests/device_tests/test_multisig_change.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_op_return.py b/python/trezorlib/tests/device_tests/test_op_return.py index 5ed46557b6..1519bf362a 100644 --- a/python/trezorlib/tests/device_tests/test_op_return.py +++ b/python/trezorlib/tests/device_tests/test_op_return.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_protect_call.py b/python/trezorlib/tests/device_tests/test_protect_call.py index d9fe3cdab9..50e3ea3ad9 100644 --- a/python/trezorlib/tests/device_tests/test_protect_call.py +++ b/python/trezorlib/tests/device_tests/test_protect_call.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_protection_levels.py b/python/trezorlib/tests/device_tests/test_protection_levels.py index 71b7676ac8..f284970a70 100644 --- a/python/trezorlib/tests/device_tests/test_protection_levels.py +++ b/python/trezorlib/tests/device_tests/test_protection_levels.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/device_tests/test_zerosig.py b/python/trezorlib/tests/device_tests/test_zerosig.py index 61d0f08907..a90377f8fe 100644 --- a/python/trezorlib/tests/device_tests/test_zerosig.py +++ b/python/trezorlib/tests/device_tests/test_zerosig.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/support/ckd_public.py b/python/trezorlib/tests/support/ckd_public.py index b7a60624e8..0579c90ba0 100644 --- a/python/trezorlib/tests/support/ckd_public.py +++ b/python/trezorlib/tests/support/ckd_public.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/support/tx_cache.py b/python/trezorlib/tests/support/tx_cache.py index d7f82bcc61..991a9edefa 100644 --- a/python/trezorlib/tests/support/tx_cache.py +++ b/python/trezorlib/tests/support/tx_cache.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/unit_tests/test_ckd_public.py b/python/trezorlib/tests/unit_tests/test_ckd_public.py index 585ba7a4bd..af5782ce8b 100644 --- a/python/trezorlib/tests/unit_tests/test_ckd_public.py +++ b/python/trezorlib/tests/unit_tests/test_ckd_public.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/unit_tests/test_cosi.py b/python/trezorlib/tests/unit_tests/test_cosi.py index 06ba32004c..88281f5767 100644 --- a/python/trezorlib/tests/unit_tests/test_cosi.py +++ b/python/trezorlib/tests/unit_tests/test_cosi.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/unit_tests/test_nem.py b/python/trezorlib/tests/unit_tests/test_nem.py index e282344939..fd52f3e3c8 100644 --- a/python/trezorlib/tests/unit_tests/test_nem.py +++ b/python/trezorlib/tests/unit_tests/test_nem.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/unit_tests/test_protobuf.py b/python/trezorlib/tests/unit_tests/test_protobuf.py index cdc2a8aa69..ef2017a560 100644 --- a/python/trezorlib/tests/unit_tests/test_protobuf.py +++ b/python/trezorlib/tests/unit_tests/test_protobuf.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/unit_tests/test_stellar.py b/python/trezorlib/tests/unit_tests/test_stellar.py index 224011b62d..9fec05f146 100644 --- a/python/trezorlib/tests/unit_tests/test_stellar.py +++ b/python/trezorlib/tests/unit_tests/test_stellar.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/unit_tests/test_transport.py b/python/trezorlib/tests/unit_tests/test_transport.py index 47afb52026..ff3a0cf40f 100644 --- a/python/trezorlib/tests/unit_tests/test_transport.py +++ b/python/trezorlib/tests/unit_tests/test_transport.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tests/unit_tests/test_tx_api.py b/python/trezorlib/tests/unit_tests/test_tx_api.py index ef4177d171..eed0f15504 100644 --- a/python/trezorlib/tests/unit_tests/test_tx_api.py +++ b/python/trezorlib/tests/unit_tests/test_tx_api.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tezos.py b/python/trezorlib/tezos.py index db0a6114d4..ed2c841b93 100644 --- a/python/trezorlib/tezos.py +++ b/python/trezorlib/tezos.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tools.py b/python/trezorlib/tools.py index 83be8d8800..e36fe8667a 100644 --- a/python/trezorlib/tools.py +++ b/python/trezorlib/tools.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/transport/__init__.py b/python/trezorlib/transport/__init__.py index e0f54e9998..b50c4f8480 100644 --- a/python/trezorlib/transport/__init__.py +++ b/python/trezorlib/transport/__init__.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/transport/bridge.py b/python/trezorlib/transport/bridge.py index 207f2854a2..1857861723 100644 --- a/python/trezorlib/transport/bridge.py +++ b/python/trezorlib/transport/bridge.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/transport/hid.py b/python/trezorlib/transport/hid.py index 5234c6d929..12bf4c25de 100644 --- a/python/trezorlib/transport/hid.py +++ b/python/trezorlib/transport/hid.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/transport/protocol.py b/python/trezorlib/transport/protocol.py index 9fe658f627..8b3bb7d301 100644 --- a/python/trezorlib/transport/protocol.py +++ b/python/trezorlib/transport/protocol.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/transport/udp.py b/python/trezorlib/transport/udp.py index 53a8b0ac95..42e323d1ff 100644 --- a/python/trezorlib/transport/udp.py +++ b/python/trezorlib/transport/udp.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/transport/webusb.py b/python/trezorlib/transport/webusb.py index 1b168c3df8..af9ffdfdb3 100644 --- a/python/trezorlib/transport/webusb.py +++ b/python/trezorlib/transport/webusb.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/tx_api.py b/python/trezorlib/tx_api.py index 819bf18e63..763d78afca 100644 --- a/python/trezorlib/tx_api.py +++ b/python/trezorlib/tx_api.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3 diff --git a/python/trezorlib/ui.py b/python/trezorlib/ui.py index 68f8a90c35..e95eb50e39 100644 --- a/python/trezorlib/ui.py +++ b/python/trezorlib/ui.py @@ -1,6 +1,6 @@ # This file is part of the Trezor project. # -# Copyright (C) 2012-2018 SatoshiLabs and contributors +# Copyright (C) 2012-2019 SatoshiLabs and contributors # # This library is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License version 3