From 66ecdd546117b700c09ff9e44bff69ba443db391 Mon Sep 17 00:00:00 2001 From: Alexander Krupenkin Date: Wed, 10 Jul 2024 05:10:49 +0300 Subject: [PATCH] Fix license headers --- LICENSE | 2 +- NOTICE | 2 +- frame/datalog/src/benchmarking.rs | 2 +- frame/datalog/src/lib.rs | 2 +- frame/datalog/src/weights.rs | 17 +++++++++++++++++ frame/digital-twin/src/lib.rs | 2 +- frame/launch/src/benchmarking.rs | 2 +- frame/launch/src/lib.rs | 2 +- frame/liability/src/economics.rs | 2 +- frame/liability/src/lib.rs | 2 +- frame/liability/src/signed.rs | 2 +- frame/liability/src/technics.rs | 2 +- frame/liability/src/traits.rs | 2 +- frame/lighthouse/src/lib.rs | 2 +- frame/rws/src/lib.rs | 2 +- frame/rws/src/tests.rs | 2 +- node/build.rs | 2 +- node/rpc/core/src/lib.rs | 2 +- node/rpc/experimental/src/extrinsic.rs | 2 +- node/rpc/experimental/src/pubsub.rs | 2 +- node/rpc/experimental/src/reqresrpc.rs | 2 +- node/rpc/experimental/src/tests.rs | 2 +- node/service/src/dev.rs | 2 +- node/service/src/lib.rs | 2 +- node/service/src/parachain.rs | 2 +- node/src/chain_spec/dev.rs | 2 +- node/src/chain_spec/mainnet.rs | 2 +- node/src/chain_spec/mod.rs | 2 +- node/src/chain_spec/testnet.rs | 2 +- node/src/cli.rs | 2 +- node/src/command.rs | 2 +- node/src/lib.rs | 2 +- primitives/src/lib.rs | 2 +- runtime/dev/build.rs | 2 +- runtime/dev/src/constants.rs | 2 +- runtime/dev/src/lib.rs | 2 +- runtime/main/build.rs | 2 +- runtime/main/src/constants.rs | 2 +- runtime/main/src/lib.rs | 2 +- runtime/main/src/xcm_config.rs | 17 +++++++++++++++++ src/main.rs | 2 +- 41 files changed, 73 insertions(+), 39 deletions(-) diff --git a/LICENSE b/LICENSE index 3356e0e55..70fe28237 100644 --- a/LICENSE +++ b/LICENSE @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018-2023 Robonomics Network + Copyright 2018-2024 Robonomics Network Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NOTICE b/NOTICE index 82cbb3bad..5e9f18eac 100644 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,5 @@ The Robonomics Framework Copyright 2018-2019 Airalab . -Copyright 2019-2023 Robonomics Network . +Copyright 2019-2024 Robonomics Network . This product includes software developed at Airalab (http://www.aira.life/). diff --git a/frame/datalog/src/benchmarking.rs b/frame/datalog/src/benchmarking.rs index 05150ea12..83a191abf 100644 --- a/frame/datalog/src/benchmarking.rs +++ b/frame/datalog/src/benchmarking.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/datalog/src/lib.rs b/frame/datalog/src/lib.rs index c4c103918..0bfa27c4b 100644 --- a/frame/datalog/src/lib.rs +++ b/frame/datalog/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/datalog/src/weights.rs b/frame/datalog/src/weights.rs index e168a2693..cce50cf4f 100644 --- a/frame/datalog/src/weights.rs +++ b/frame/datalog/src/weights.rs @@ -1,3 +1,20 @@ +/////////////////////////////////////////////////////////////////////////////// +// +// Copyright 2018-2024 Robonomics Network +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +/////////////////////////////////////////////////////////////////////////////// use frame_support::weights::Weight; pub trait WeightInfo { diff --git a/frame/digital-twin/src/lib.rs b/frame/digital-twin/src/lib.rs index 6fbe6f858..3b36432dd 100644 --- a/frame/digital-twin/src/lib.rs +++ b/frame/digital-twin/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/launch/src/benchmarking.rs b/frame/launch/src/benchmarking.rs index b347c645b..541e144c4 100644 --- a/frame/launch/src/benchmarking.rs +++ b/frame/launch/src/benchmarking.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/launch/src/lib.rs b/frame/launch/src/lib.rs index c12aba746..90209c043 100644 --- a/frame/launch/src/lib.rs +++ b/frame/launch/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/liability/src/economics.rs b/frame/liability/src/economics.rs index a86b1053f..ab6e172f5 100644 --- a/frame/liability/src/economics.rs +++ b/frame/liability/src/economics.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/liability/src/lib.rs b/frame/liability/src/lib.rs index a3a277de2..61e66312e 100644 --- a/frame/liability/src/lib.rs +++ b/frame/liability/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/liability/src/signed.rs b/frame/liability/src/signed.rs index a4f019495..d373cda7e 100644 --- a/frame/liability/src/signed.rs +++ b/frame/liability/src/signed.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/liability/src/technics.rs b/frame/liability/src/technics.rs index fec25eab9..b4578a5e8 100644 --- a/frame/liability/src/technics.rs +++ b/frame/liability/src/technics.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/liability/src/traits.rs b/frame/liability/src/traits.rs index 58360b9d1..f80e235f6 100644 --- a/frame/liability/src/traits.rs +++ b/frame/liability/src/traits.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/lighthouse/src/lib.rs b/frame/lighthouse/src/lib.rs index b47e095b6..4d8e19b42 100644 --- a/frame/lighthouse/src/lib.rs +++ b/frame/lighthouse/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/rws/src/lib.rs b/frame/rws/src/lib.rs index 62705a4b3..2bd6722e8 100644 --- a/frame/rws/src/lib.rs +++ b/frame/rws/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/frame/rws/src/tests.rs b/frame/rws/src/tests.rs index 36b24ad8c..e31d9c12c 100644 --- a/frame/rws/src/tests.rs +++ b/frame/rws/src/tests.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/build.rs b/node/build.rs index 30b6bfa52..af775df13 100644 --- a/node/build.rs +++ b/node/build.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/rpc/core/src/lib.rs b/node/rpc/core/src/lib.rs index 09d12463e..0a7bfef42 100644 --- a/node/rpc/core/src/lib.rs +++ b/node/rpc/core/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/rpc/experimental/src/extrinsic.rs b/node/rpc/experimental/src/extrinsic.rs index 918f1e488..aa666c183 100644 --- a/node/rpc/experimental/src/extrinsic.rs +++ b/node/rpc/experimental/src/extrinsic.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/rpc/experimental/src/pubsub.rs b/node/rpc/experimental/src/pubsub.rs index 8f3703250..993a858e4 100644 --- a/node/rpc/experimental/src/pubsub.rs +++ b/node/rpc/experimental/src/pubsub.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2022 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/rpc/experimental/src/reqresrpc.rs b/node/rpc/experimental/src/reqresrpc.rs index 9d02a5cdb..502b805d0 100644 --- a/node/rpc/experimental/src/reqresrpc.rs +++ b/node/rpc/experimental/src/reqresrpc.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/rpc/experimental/src/tests.rs b/node/rpc/experimental/src/tests.rs index 20958ff5f..83d9ddf0e 100644 --- a/node/rpc/experimental/src/tests.rs +++ b/node/rpc/experimental/src/tests.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/service/src/dev.rs b/node/service/src/dev.rs index 5da2b4736..255928e85 100644 --- a/node/service/src/dev.rs +++ b/node/service/src/dev.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/service/src/lib.rs b/node/service/src/lib.rs index d13c8f9a8..5bae6688d 100644 --- a/node/service/src/lib.rs +++ b/node/service/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/service/src/parachain.rs b/node/service/src/parachain.rs index a88eeab4a..60588cd54 100644 --- a/node/service/src/parachain.rs +++ b/node/service/src/parachain.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/src/chain_spec/dev.rs b/node/src/chain_spec/dev.rs index a17b6bfc9..7de73a616 100644 --- a/node/src/chain_spec/dev.rs +++ b/node/src/chain_spec/dev.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/src/chain_spec/mainnet.rs b/node/src/chain_spec/mainnet.rs index de268ee00..12a0a56ad 100644 --- a/node/src/chain_spec/mainnet.rs +++ b/node/src/chain_spec/mainnet.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/src/chain_spec/mod.rs b/node/src/chain_spec/mod.rs index d4f35ebb6..6dd4e51a8 100644 --- a/node/src/chain_spec/mod.rs +++ b/node/src/chain_spec/mod.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/src/chain_spec/testnet.rs b/node/src/chain_spec/testnet.rs index 12c860a00..4dbb30797 100644 --- a/node/src/chain_spec/testnet.rs +++ b/node/src/chain_spec/testnet.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/src/cli.rs b/node/src/cli.rs index 7909dbc38..e1d91c5c1 100644 --- a/node/src/cli.rs +++ b/node/src/cli.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/src/command.rs b/node/src/command.rs index 872286c19..3f362fa6b 100644 --- a/node/src/command.rs +++ b/node/src/command.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/node/src/lib.rs b/node/src/lib.rs index a74beff93..71a0955f3 100644 --- a/node/src/lib.rs +++ b/node/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/primitives/src/lib.rs b/primitives/src/lib.rs index 30e844811..a34be46f1 100644 --- a/primitives/src/lib.rs +++ b/primitives/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/runtime/dev/build.rs b/runtime/dev/build.rs index 2200ae47c..64ec9d52c 100644 --- a/runtime/dev/build.rs +++ b/runtime/dev/build.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/runtime/dev/src/constants.rs b/runtime/dev/src/constants.rs index 5cfea89e9..d8718640d 100644 --- a/runtime/dev/src/constants.rs +++ b/runtime/dev/src/constants.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/runtime/dev/src/lib.rs b/runtime/dev/src/lib.rs index d4f962acd..f0e926791 100644 --- a/runtime/dev/src/lib.rs +++ b/runtime/dev/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/runtime/main/build.rs b/runtime/main/build.rs index 2200ae47c..64ec9d52c 100644 --- a/runtime/main/build.rs +++ b/runtime/main/build.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/runtime/main/src/constants.rs b/runtime/main/src/constants.rs index c4ef533f9..b9dc4f068 100644 --- a/runtime/main/src/constants.rs +++ b/runtime/main/src/constants.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/runtime/main/src/lib.rs b/runtime/main/src/lib.rs index 18c9f4313..245960cf4 100644 --- a/runtime/main/src/lib.rs +++ b/runtime/main/src/lib.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/runtime/main/src/xcm_config.rs b/runtime/main/src/xcm_config.rs index 42e017da2..b38071e2c 100644 --- a/runtime/main/src/xcm_config.rs +++ b/runtime/main/src/xcm_config.rs @@ -1,3 +1,20 @@ +/////////////////////////////////////////////////////////////////////////////// +// +// Copyright 2018-2024 Robonomics Network +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// +/////////////////////////////////////////////////////////////////////////////// use super::{ AccountId, AllPalletsWithSystem, AssetId, Assets, Balance, Balances, DealWithFees, ParachainInfo, ParachainSystem, PolkadotXcm, Runtime, RuntimeCall, RuntimeEvent, RuntimeOrigin, diff --git a/src/main.rs b/src/main.rs index 035447316..dfccef507 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -// Copyright 2018-2023 Robonomics Network +// Copyright 2018-2024 Robonomics Network // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.