Skip to content

Commit

Permalink
fix copyrights
Browse files Browse the repository at this point in the history
  • Loading branch information
Chralt98 committed Feb 24, 2025
1 parent 1edf274 commit 929df7d
Show file tree
Hide file tree
Showing 12 changed files with 216 additions and 12 deletions.
19 changes: 18 additions & 1 deletion zrml/combinatorial-tokens/fuzz/common.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

use zeitgeist_primitives::{
traits::MarketOf,
types::{Market, MarketCreation, MarketPeriod, MarketStatus, MarketType, ScoringRule},
};
Expand Down
19 changes: 18 additions & 1 deletion zrml/combinatorial-tokens/fuzz/merge_position.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

#![no_main]

mod common;

Expand Down
19 changes: 18 additions & 1 deletion zrml/combinatorial-tokens/fuzz/redeem_position.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

#![no_main]

mod common;

Expand Down
19 changes: 18 additions & 1 deletion zrml/combinatorial-tokens/fuzz/split_position.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

#![no_main]

mod common;

Expand Down
19 changes: 18 additions & 1 deletion zrml/futarchy/fuzz/submit_proposal.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

#![no_main]

use arbitrary::{Arbitrary, Result as ArbitraryResult, Unstructured};
use frame_system::pallet_prelude::{BlockNumberFor, OriginFor};
Expand Down
19 changes: 18 additions & 1 deletion zrml/futarchy/src/proposal_storage.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

use crate::{
traits::ProposalStorage, types::Proposal, Config, Error, Pallet, ProposalCount, Proposals,
ProposalsOf,
};
Expand Down
19 changes: 18 additions & 1 deletion zrml/futarchy/src/traits/proposal_storage.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

use crate::{types::Proposal, Config, ProposalsOf};
use alloc::{collections::BTreeMap, vec::Vec};
use frame_system::pallet_prelude::BlockNumberFor;
use sp_runtime::DispatchError;
Expand Down
19 changes: 18 additions & 1 deletion zrml/neo-swaps/fuzz/combo_buy.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

#![no_main]

mod common;

Expand Down
19 changes: 18 additions & 1 deletion zrml/neo-swaps/fuzz/combo_sell.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

#![no_main]

mod common;

Expand Down
19 changes: 18 additions & 1 deletion zrml/neo-swaps/fuzz/common.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

use zeitgeist_primitives::{
traits::MarketOf,
types::{Market, MarketCreation, MarketPeriod, MarketStatus, MarketType, ScoringRule},
};
Expand Down
19 changes: 18 additions & 1 deletion zrml/neo-swaps/fuzz/deploy_combinatorial_pool.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

#![no_main]

mod common;

Expand Down
19 changes: 18 additions & 1 deletion zrml/neo-swaps/src/types/decision_market_oracle_scoreboard.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
// Copyright 2025 Forecasting Technologies LTD.
// Copyright 2024-2025 Forecasting Technologies LTD.
//
// This file is part of Zeitgeist.
//
// Zeitgeist 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.
//
// Zeitgeist 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 Zeitgeist. If not, see <https://www.gnu.org/licenses/>.

use crate::{BalanceOf, Config};
use frame_system::pallet_prelude::BlockNumberFor;
use parity_scale_codec::{Decode, Encode, MaxEncodedLen};
use scale_info::TypeInfo;
Expand Down

0 comments on commit 929df7d

Please sign in to comment.