From 5945988ac05936c78932a20dd32d80f1e80b47ac Mon Sep 17 00:00:00 2001 From: marshacb Date: Thu, 7 Dec 2023 11:29:50 -0500 Subject: [PATCH] update copyright year --- src/types/responses/SanitizedArgs.ts | 2 +- .../responses/SanitizedBackedCandidate.ts | 2 +- .../SanitizedBackedCandidateDescriptor.ts | 2 +- .../SanitizedBackedCandidateValidityVotes.ts | 2 +- .../SanitizedBackedCandidatesCommitments.ts | 2 +- src/types/responses/SanitizedBitfield.ts | 2 +- src/types/responses/SanitizedCandidate.ts | 2 +- .../responses/SanitizedHorizontalMessages.ts | 21 ------------------- .../SanitizedParachainInherentData.ts | 2 +- .../SanitizedParachainValidationData.ts | 2 +- .../responses/SanitizedParentInherentData.ts | 2 +- .../SanitizediDisputeStatementSet.ts | 2 +- 12 files changed, 11 insertions(+), 32 deletions(-) delete mode 100644 src/types/responses/SanitizedHorizontalMessages.ts diff --git a/src/types/responses/SanitizedArgs.ts b/src/types/responses/SanitizedArgs.ts index 19b73335f..b7c9541cb 100644 --- a/src/types/responses/SanitizedArgs.ts +++ b/src/types/responses/SanitizedArgs.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify diff --git a/src/types/responses/SanitizedBackedCandidate.ts b/src/types/responses/SanitizedBackedCandidate.ts index dc25b4007..b8b7f9ef5 100644 --- a/src/types/responses/SanitizedBackedCandidate.ts +++ b/src/types/responses/SanitizedBackedCandidate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify diff --git a/src/types/responses/SanitizedBackedCandidateDescriptor.ts b/src/types/responses/SanitizedBackedCandidateDescriptor.ts index 35d8db73d..a9d880a5f 100644 --- a/src/types/responses/SanitizedBackedCandidateDescriptor.ts +++ b/src/types/responses/SanitizedBackedCandidateDescriptor.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify diff --git a/src/types/responses/SanitizedBackedCandidateValidityVotes.ts b/src/types/responses/SanitizedBackedCandidateValidityVotes.ts index 03e88d138..cfe374894 100644 --- a/src/types/responses/SanitizedBackedCandidateValidityVotes.ts +++ b/src/types/responses/SanitizedBackedCandidateValidityVotes.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify diff --git a/src/types/responses/SanitizedBackedCandidatesCommitments.ts b/src/types/responses/SanitizedBackedCandidatesCommitments.ts index ab7e2e5e1..d4588d9a5 100644 --- a/src/types/responses/SanitizedBackedCandidatesCommitments.ts +++ b/src/types/responses/SanitizedBackedCandidatesCommitments.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify diff --git a/src/types/responses/SanitizedBitfield.ts b/src/types/responses/SanitizedBitfield.ts index cd9e1280e..48d24bdd6 100644 --- a/src/types/responses/SanitizedBitfield.ts +++ b/src/types/responses/SanitizedBitfield.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify diff --git a/src/types/responses/SanitizedCandidate.ts b/src/types/responses/SanitizedCandidate.ts index d836d7e8e..6775ecfac 100644 --- a/src/types/responses/SanitizedCandidate.ts +++ b/src/types/responses/SanitizedCandidate.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify diff --git a/src/types/responses/SanitizedHorizontalMessages.ts b/src/types/responses/SanitizedHorizontalMessages.ts deleted file mode 100644 index 26c6f1c6c..000000000 --- a/src/types/responses/SanitizedHorizontalMessages.ts +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. -// This file is part of Substrate API Sidecar. -// -// Substrate API Sidecar is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program 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 General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . - -import { IHorizontalMessage } from './BlockXCMMessages'; - -export interface ISanitizedHorizontalMessages { - [key: string]: IHorizontalMessage[]; -} diff --git a/src/types/responses/SanitizedParachainInherentData.ts b/src/types/responses/SanitizedParachainInherentData.ts index 4dc82e48c..b5ab8aa2b 100644 --- a/src/types/responses/SanitizedParachainInherentData.ts +++ b/src/types/responses/SanitizedParachainInherentData.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify diff --git a/src/types/responses/SanitizedParachainValidationData.ts b/src/types/responses/SanitizedParachainValidationData.ts index aace26e0a..55a15f14b 100644 --- a/src/types/responses/SanitizedParachainValidationData.ts +++ b/src/types/responses/SanitizedParachainValidationData.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify diff --git a/src/types/responses/SanitizedParentInherentData.ts b/src/types/responses/SanitizedParentInherentData.ts index 1677ce536..961c19217 100644 --- a/src/types/responses/SanitizedParentInherentData.ts +++ b/src/types/responses/SanitizedParentInherentData.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify diff --git a/src/types/responses/SanitizediDisputeStatementSet.ts b/src/types/responses/SanitizediDisputeStatementSet.ts index d47d3d250..e3bcc703d 100644 --- a/src/types/responses/SanitizediDisputeStatementSet.ts +++ b/src/types/responses/SanitizediDisputeStatementSet.ts @@ -1,4 +1,4 @@ -// Copyright 2017-2022 Parity Technologies (UK) Ltd. +// Copyright 2017-2023 Parity Technologies (UK) Ltd. // This file is part of Substrate API Sidecar. // // Substrate API Sidecar is free software: you can redistribute it and/or modify