Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 9b08105

Browse files
authored
Happy new year (#7814)
* Happy new year Updates the copyright years and fixes wrong license headers. * Fix the template * Split HEADER into HEADER-APACHE & HEADER-GPL
1 parent 5215cd7 commit 9b08105

File tree

923 files changed

+2004
-1769
lines changed

Some content is hidden

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

923 files changed

+2004
-1769
lines changed

.maintain/frame-weight-template.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: Apache-2.0
55

66
// Licensed under the Apache License, Version 2.0 (the "License");

.maintain/update-copyright.sh

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
#!/usr/bin/env bash
22

3-
SINGLE_DATES=$(grep -lr "// Copyright [0-9]* Parity Technologies (UK) Ltd.")
4-
RANGE_DATES=$(grep -lr "// Copyright [0-9]*-[0-9]* Parity Technologies (UK) Ltd.")
3+
SINGLE_DATES=$(grep -lr "// Copyright (C) [0-9]* Parity Technologies (UK) Ltd.")
54
YEAR=$(date +%Y)
65

76
for file in $SINGLE_DATES; do
8-
FILE_YEAR=$(cat $file | sed -n "s|// Copyright \([[:digit:]][[:digit:]][[:digit:]][[:digit:]]\) Parity Technologies (UK) Ltd.|\1|p")
7+
FILE_YEAR=$(cat $file | sed -n "s|// Copyright (C) \([[:digit:]][[:digit:]][[:digit:]][[:digit:]]\) Parity Technologies (UK) Ltd.|\1|p")
98
if [ $YEAR -ne $FILE_YEAR ]; then
10-
sed -i -e "s|// Copyright \([[:digit:]][[:digit:]][[:digit:]][[:digit:]]\) Parity Technologies (UK) Ltd.|// Copyright \1-$YEAR Parity Technologies (UK) Ltd.|g" $file
9+
sed -i -e "s|// Copyright (C) \([[:digit:]][[:digit:]][[:digit:]][[:digit:]]\) Parity Technologies (UK) Ltd.|// Copyright (C) \1-$YEAR Parity Technologies (UK) Ltd.|g" $file
1110
fi
1211
done
1312

14-
grep -lr "// Copyright [0-9]*-[0-9]* Parity Technologies (UK) Ltd." |
15-
xargs sed -i -e "s|// Copyright \([[:digit:]][[:digit:]][[:digit:]][[:digit:]]\)-[[:digit:]][[:digit:]][[:digit:]][[:digit:]] Parity Technologies (UK) Ltd.|// Copyright \1-$YEAR Parity Technologies (UK) Ltd.|g"
13+
grep -lr "// Copyright (C) [0-9]*-[0-9]* Parity Technologies (UK) Ltd." |
14+
xargs sed -i -e "s|// Copyright (C) \([[:digit:]][[:digit:]][[:digit:]][[:digit:]]\)-[[:digit:]][[:digit:]][[:digit:]][[:digit:]] Parity Technologies (UK) Ltd.|// Copyright (C) \1-$YEAR Parity Technologies (UK) Ltd.|g"

HEADER renamed to HEADER-APACHE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: Apache-2.0
55

66
// Licensed under the Apache License, Version 2.0 (the "License");
Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
// Copyright 2017-2020 Parity Technologies (UK) Ltd.
21
// This file is part of Substrate.
32

4-
// Substrate is free software: you can redistribute it and/or modify
3+
// Copyright (C) 2021 Parity Technologies (UK) Ltd.
4+
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
5+
6+
// This program is free software: you can redistribute it and/or modify
57
// it under the terms of the GNU General Public License as published by
68
// the Free Software Foundation, either version 3 of the License, or
79
// (at your option) any later version.
810

9-
// Substrate is distributed in the hope that it will be useful,
11+
// This program is distributed in the hope that it will be useful,
1012
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1214
// GNU General Public License for more details.
1315

1416
// You should have received a copy of the GNU General Public License
15-
// along with Substrate. If not, see <http://www.gnu.org/licenses/>.
17+
// along with this program. If not, see <https://www.gnu.org/licenses/>.

bin/node-template/node/src/command.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2017-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2017-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: Apache-2.0
55

66
// Licensed under the Apache License, Version 2.0 (the "License");

bin/node/bench/src/common.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
21
// This file is part of Substrate.
32

4-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
54
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
65

76
// This program is free software: you can redistribute it and/or modify
@@ -45,4 +44,4 @@ impl SizeType {
4544
SizeType::Custom(val) => Some(*val),
4645
}
4746
}
48-
}
47+
}

bin/node/bench/src/construct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/bench/src/core.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/bench/src/generator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/bench/src/import.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/bench/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/bench/src/simple_trie.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/bench/src/state_sizes.rs

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
2-
// This file is part of Parity.
1+
// This file is part of Substrate.
32

4-
// Parity is free software: you can redistribute it and/or modify
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
4+
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
5+
6+
// This program is free software: you can redistribute it and/or modify
57
// it under the terms of the GNU General Public License as published by
68
// the Free Software Foundation, either version 3 of the License, or
79
// (at your option) any later version.
810

9-
// Parity is distributed in the hope that it will be useful,
11+
// This program is distributed in the hope that it will be useful,
1012
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1214
// GNU General Public License for more details.
1315

1416
// You should have received a copy of the GNU General Public License
15-
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
17+
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1618

1719
/// Kusama value size distribution
1820
pub const KUSAMA_STATE_DISTRIBUTION: &'static[(u32, u32)] = &[
@@ -4753,4 +4755,4 @@ pub const KUSAMA_STATE_DISTRIBUTION: &'static[(u32, u32)] = &[
47534755
(1516670, 1),
47544756
(1605731, 1),
47554757
(1605821, 1),
4756-
];
4758+
];

bin/node/bench/src/tempdb.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/bench/src/trie.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/bench/src/txpool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/browser-testing/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: Apache-2.0
55

66
// Licensed under the Apache License, Version 2.0 (the "License");

bin/node/cli/bin/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2017-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2017-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/src/browser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2019-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2019-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/src/chain_spec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/src/command.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2017-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2017-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/src/service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/tests/build_spec_works.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/tests/check_block_works.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/tests/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/tests/export_import_flow.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/tests/inspect_works.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/tests/purge_chain_works.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/tests/running_the_node_and_interrupt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/tests/temp_base_path_works.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/cli/tests/version.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/executor/benches/bench.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: Apache-2.0
55

66
// Licensed under the Apache License, Version 2.0 (the "License");

bin/node/executor/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: Apache-2.0
55

66
// Licensed under the Apache License, Version 2.0 (the "License");

bin/node/executor/tests/basic.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: Apache-2.0
55

66
// Licensed under the Apache License, Version 2.0 (the "License");

bin/node/executor/tests/common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: Apache-2.0
55

66
// Licensed under the Apache License, Version 2.0 (the "License");

bin/node/executor/tests/fees.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: Apache-2.0
55

66
// Licensed under the Apache License, Version 2.0 (the "License");

bin/node/executor/tests/submit_transaction.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2018-2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2018-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: Apache-2.0
55

66
// Licensed under the Apache License, Version 2.0 (the "License");

bin/node/inspect/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

bin/node/inspect/src/command.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// This file is part of Substrate.
22

3-
// Copyright (C) 2020 Parity Technologies (UK) Ltd.
3+
// Copyright (C) 2020-2021 Parity Technologies (UK) Ltd.
44
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
55

66
// This program is free software: you can redistribute it and/or modify

0 commit comments

Comments
 (0)