diff --git a/accounts/ethkey/cli/src/main.rs b/accounts/ethkey/cli/src/main.rs index 389e265eb..98b968359 100644 --- a/accounts/ethkey/cli/src/main.rs +++ b/accounts/ethkey/cli/src/main.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate docopt; extern crate env_logger; diff --git a/accounts/ethkey/src/brain.rs b/accounts/ethkey/src/brain.rs index 1fec0c79d..847355713 100644 --- a/accounts/ethkey/src/brain.rs +++ b/accounts/ethkey/src/brain.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use parity_crypto::publickey::{KeyPair, Generator, Secret}; use parity_crypto::Keccak256; diff --git a/accounts/ethkey/src/brain_prefix.rs b/accounts/ethkey/src/brain_prefix.rs index b916130d1..43af9b9d2 100644 --- a/accounts/ethkey/src/brain_prefix.rs +++ b/accounts/ethkey/src/brain_prefix.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use super::Brain; use parity_crypto::publickey::{Generator, KeyPair, Error}; diff --git a/accounts/ethkey/src/brain_recover.rs b/accounts/ethkey/src/brain_recover.rs index 0121fc673..aaae0d8ab 100644 --- a/accounts/ethkey/src/brain_recover.rs +++ b/accounts/ethkey/src/brain_recover.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::HashSet; diff --git a/accounts/ethkey/src/lib.rs b/accounts/ethkey/src/lib.rs index a6e8f9a36..ac5667ed4 100644 --- a/accounts/ethkey/src/lib.rs +++ b/accounts/ethkey/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . // #![warn(missing_docs)] @@ -37,4 +37,4 @@ pub use self::parity_wordlist::Error as WordlistError; pub use self::brain::Brain; pub use self::brain_prefix::BrainPrefix; pub use self::password::Password; -pub use self::prefix::Prefix; \ No newline at end of file +pub use self::prefix::Prefix; diff --git a/accounts/ethkey/src/password.rs b/accounts/ethkey/src/password.rs index 87fe61581..0a5b4cd08 100644 --- a/accounts/ethkey/src/password.rs +++ b/accounts/ethkey/src/password.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{fmt, ptr}; diff --git a/accounts/ethkey/src/prefix.rs b/accounts/ethkey/src/prefix.rs index cd1b16bfa..bf8e1b9e4 100644 --- a/accounts/ethkey/src/prefix.rs +++ b/accounts/ethkey/src/prefix.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use parity_crypto::publickey::{Random, Generator, KeyPair, Error}; diff --git a/accounts/ethstore/cli/src/crack.rs b/accounts/ethstore/cli/src/crack.rs index f656e23f5..4be021321 100644 --- a/accounts/ethstore/cli/src/crack.rs +++ b/accounts/ethstore/cli/src/crack.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{cmp, thread}; use std::sync::Arc; diff --git a/accounts/ethstore/cli/src/main.rs b/accounts/ethstore/cli/src/main.rs index a71830d75..ee20fee54 100644 --- a/accounts/ethstore/cli/src/main.rs +++ b/accounts/ethstore/cli/src/main.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate dir; extern crate docopt; diff --git a/accounts/ethstore/cli/tests/cli.rs b/accounts/ethstore/cli/tests/cli.rs index 6ced66e5d..183a0987b 100644 --- a/accounts/ethstore/cli/tests/cli.rs +++ b/accounts/ethstore/cli/tests/cli.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate tempdir; use std::process::Command; diff --git a/accounts/ethstore/src/account/cipher.rs b/accounts/ethstore/src/account/cipher.rs index b908cccfa..68a4f71f2 100644 --- a/accounts/ethstore/src/account/cipher.rs +++ b/accounts/ethstore/src/account/cipher.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use json; diff --git a/accounts/ethstore/src/account/crypto.rs b/accounts/ethstore/src/account/crypto.rs index b8e478935..d09fb18bd 100644 --- a/accounts/ethstore/src/account/crypto.rs +++ b/accounts/ethstore/src/account/crypto.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::str; use crypto::publickey::Secret; diff --git a/accounts/ethstore/src/account/kdf.rs b/accounts/ethstore/src/account/kdf.rs index fd797829a..3d0fe9f86 100644 --- a/accounts/ethstore/src/account/kdf.rs +++ b/accounts/ethstore/src/account/kdf.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use json; diff --git a/accounts/ethstore/src/account/mod.rs b/accounts/ethstore/src/account/mod.rs index 34397c293..0f2243c9b 100644 --- a/accounts/ethstore/src/account/mod.rs +++ b/accounts/ethstore/src/account/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . mod cipher; mod crypto; diff --git a/accounts/ethstore/src/account/safe_account.rs b/accounts/ethstore/src/account/safe_account.rs index 797914f62..ba8b750f9 100644 --- a/accounts/ethstore/src/account/safe_account.rs +++ b/accounts/ethstore/src/account/safe_account.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use crypto::publickey::{KeyPair, sign, Address, Signature, Message, Public, Secret}; use ethkey::Password; diff --git a/accounts/ethstore/src/account/version.rs b/accounts/ethstore/src/account/version.rs index 28afcfced..e0c0d125a 100644 --- a/accounts/ethstore/src/account/version.rs +++ b/accounts/ethstore/src/account/version.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use json; diff --git a/accounts/ethstore/src/accounts_dir/disk.rs b/accounts/ethstore/src/accounts_dir/disk.rs index 08da2cdef..71abdb049 100644 --- a/accounts/ethstore/src/accounts_dir/disk.rs +++ b/accounts/ethstore/src/accounts_dir/disk.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{fs, io}; use std::io::Write; diff --git a/accounts/ethstore/src/accounts_dir/memory.rs b/accounts/ethstore/src/accounts_dir/memory.rs index d6ffa4dba..d846ad0a1 100644 --- a/accounts/ethstore/src/accounts_dir/memory.rs +++ b/accounts/ethstore/src/accounts_dir/memory.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::HashMap; use parking_lot::RwLock; diff --git a/accounts/ethstore/src/accounts_dir/mod.rs b/accounts/ethstore/src/accounts_dir/mod.rs index 8a4b182f2..c2b97f45d 100644 --- a/accounts/ethstore/src/accounts_dir/mod.rs +++ b/accounts/ethstore/src/accounts_dir/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Accounts Directory diff --git a/accounts/ethstore/src/accounts_dir/vault.rs b/accounts/ethstore/src/accounts_dir/vault.rs index 0b61358de..cb8c83cb5 100644 --- a/accounts/ethstore/src/accounts_dir/vault.rs +++ b/accounts/ethstore/src/accounts_dir/vault.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{fs, io}; use std::path::{PathBuf, Path}; diff --git a/accounts/ethstore/src/error.rs b/accounts/ethstore/src/error.rs index 168cef952..1769cdfed 100644 --- a/accounts/ethstore/src/error.rs +++ b/accounts/ethstore/src/error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use std::io::Error as IoError; diff --git a/accounts/ethstore/src/ethstore.rs b/accounts/ethstore/src/ethstore.rs index da77e7ab3..39fdb08dc 100644 --- a/accounts/ethstore/src/ethstore.rs +++ b/accounts/ethstore/src/ethstore.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::{BTreeMap, HashMap}; use std::mem; diff --git a/accounts/ethstore/src/import.rs b/accounts/ethstore/src/import.rs index 2426de1c0..68bc65d6b 100644 --- a/accounts/ethstore/src/import.rs +++ b/accounts/ethstore/src/import.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::HashSet; use std::path::Path; diff --git a/accounts/ethstore/src/json/bytes.rs b/accounts/ethstore/src/json/bytes.rs index 1900a1381..20a58de0e 100644 --- a/accounts/ethstore/src/json/bytes.rs +++ b/accounts/ethstore/src/json/bytes.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{ops, str}; use serde::{Deserialize, Deserializer, Serialize, Serializer}; diff --git a/accounts/ethstore/src/json/cipher.rs b/accounts/ethstore/src/json/cipher.rs index d5acc75f8..6f1c24bb9 100644 --- a/accounts/ethstore/src/json/cipher.rs +++ b/accounts/ethstore/src/json/cipher.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use serde::{Serialize, Serializer, Deserialize, Deserializer}; diff --git a/accounts/ethstore/src/json/crypto.rs b/accounts/ethstore/src/json/crypto.rs index b1736df02..3449cb360 100644 --- a/accounts/ethstore/src/json/crypto.rs +++ b/accounts/ethstore/src/json/crypto.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{fmt, str}; use serde::{Deserialize, Deserializer, Serialize, Serializer}; diff --git a/accounts/ethstore/src/json/error.rs b/accounts/ethstore/src/json/error.rs index 7dba257e6..0a4a9e4e7 100644 --- a/accounts/ethstore/src/json/error.rs +++ b/accounts/ethstore/src/json/error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; diff --git a/accounts/ethstore/src/json/hash.rs b/accounts/ethstore/src/json/hash.rs index 16d4ec63b..9ff2ab855 100644 --- a/accounts/ethstore/src/json/hash.rs +++ b/accounts/ethstore/src/json/hash.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{ops, fmt, str}; use rustc_hex::{FromHex, ToHex}; diff --git a/accounts/ethstore/src/json/id.rs b/accounts/ethstore/src/json/id.rs index 92e31cf00..d02ab29f8 100644 --- a/accounts/ethstore/src/json/id.rs +++ b/accounts/ethstore/src/json/id.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Universaly unique identifier. diff --git a/accounts/ethstore/src/json/kdf.rs b/accounts/ethstore/src/json/kdf.rs index eabb49cd7..eab015ecd 100644 --- a/accounts/ethstore/src/json/kdf.rs +++ b/accounts/ethstore/src/json/kdf.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use serde::{Serialize, Serializer, Deserialize, Deserializer}; diff --git a/accounts/ethstore/src/json/key_file.rs b/accounts/ethstore/src/json/key_file.rs index 2e7a45bfa..a9e2a5e2e 100644 --- a/accounts/ethstore/src/json/key_file.rs +++ b/accounts/ethstore/src/json/key_file.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use std::io::{Read, Write}; diff --git a/accounts/ethstore/src/json/mod.rs b/accounts/ethstore/src/json/mod.rs index e0ab9abd3..da3355d90 100644 --- a/accounts/ethstore/src/json/mod.rs +++ b/accounts/ethstore/src/json/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Contract interface specification. diff --git a/accounts/ethstore/src/json/presale.rs b/accounts/ethstore/src/json/presale.rs index 7aa4e897e..20bdf8db4 100644 --- a/accounts/ethstore/src/json/presale.rs +++ b/accounts/ethstore/src/json/presale.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::io::Read; use serde_json; diff --git a/accounts/ethstore/src/json/vault_file.rs b/accounts/ethstore/src/json/vault_file.rs index c033bc870..cfbfb20cf 100644 --- a/accounts/ethstore/src/json/vault_file.rs +++ b/accounts/ethstore/src/json/vault_file.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::io::{Read, Write}; use serde_json; diff --git a/accounts/ethstore/src/json/vault_key_file.rs b/accounts/ethstore/src/json/vault_key_file.rs index 854685e31..d4318e106 100644 --- a/accounts/ethstore/src/json/vault_key_file.rs +++ b/accounts/ethstore/src/json/vault_key_file.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::io::{Read, Write}; use serde::de::Error; diff --git a/accounts/ethstore/src/json/version.rs b/accounts/ethstore/src/json/version.rs index 583f05e88..504426de5 100644 --- a/accounts/ethstore/src/json/version.rs +++ b/accounts/ethstore/src/json/version.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use serde::{Serialize, Serializer, Deserialize, Deserializer}; diff --git a/accounts/ethstore/src/lib.rs b/accounts/ethstore/src/lib.rs index 05f643d42..16ea91260 100644 --- a/accounts/ethstore/src/lib.rs +++ b/accounts/ethstore/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethereum key-management. diff --git a/accounts/ethstore/src/presale.rs b/accounts/ethstore/src/presale.rs index b317e8ca7..e35ca0a47 100644 --- a/accounts/ethstore/src/presale.rs +++ b/accounts/ethstore/src/presale.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fs; use std::path::Path; diff --git a/accounts/ethstore/src/random.rs b/accounts/ethstore/src/random.rs index 1faa51824..9936c04f6 100644 --- a/accounts/ethstore/src/random.rs +++ b/accounts/ethstore/src/random.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use rand::{Rng, RngCore, rngs::OsRng, distributions::Alphanumeric}; diff --git a/accounts/ethstore/src/secret_store.rs b/accounts/ethstore/src/secret_store.rs index 9632c345e..003cff26c 100644 --- a/accounts/ethstore/src/secret_store.rs +++ b/accounts/ethstore/src/secret_store.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::hash::{Hash, Hasher}; use std::path::PathBuf; diff --git a/accounts/ethstore/tests/api.rs b/accounts/ethstore/tests/api.rs index 0866dd674..039a77e0e 100644 --- a/accounts/ethstore/tests/api.rs +++ b/accounts/ethstore/tests/api.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate rand; extern crate ethstore; diff --git a/accounts/ethstore/tests/util/mod.rs b/accounts/ethstore/tests/util/mod.rs index fbe24465c..15a81d8b3 100644 --- a/accounts/ethstore/tests/util/mod.rs +++ b/accounts/ethstore/tests/util/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . mod transient_dir; diff --git a/accounts/ethstore/tests/util/transient_dir.rs b/accounts/ethstore/tests/util/transient_dir.rs index 8bee9ae6d..c1773d634 100644 --- a/accounts/ethstore/tests/util/transient_dir.rs +++ b/accounts/ethstore/tests/util/transient_dir.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::path::PathBuf; use std::{env, fs}; diff --git a/accounts/src/account_data.rs b/accounts/src/account_data.rs index cceb74bbc..4d573da10 100644 --- a/accounts/src/account_data.rs +++ b/accounts/src/account_data.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Account Metadata @@ -71,4 +71,3 @@ impl AccountMeta { serde_json::to_writer(writer, m) } } - diff --git a/accounts/src/error.rs b/accounts/src/error.rs index 1bbcf35ad..0d651bfa8 100644 --- a/accounts/src/error.rs +++ b/accounts/src/error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; diff --git a/accounts/src/lib.rs b/accounts/src/lib.rs index a2a08cd1a..9e2937594 100644 --- a/accounts/src/lib.rs +++ b/accounts/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #![warn(missing_docs)] diff --git a/accounts/src/stores.rs b/accounts/src/stores.rs index 1d1d0ea71..d460b2cc3 100644 --- a/accounts/src/stores.rs +++ b/accounts/src/stores.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Address Book Store diff --git a/chainspec/src/main.rs b/chainspec/src/main.rs index 360558f43..e43a7d727 100644 --- a/chainspec/src/main.rs +++ b/chainspec/src/main.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate serde_json; extern crate ethjson; diff --git a/cli-signer/rpc-client/src/client.rs b/cli-signer/rpc-client/src/client.rs index c9038bacc..c151794dd 100644 --- a/cli-signer/rpc-client/src/client.rs +++ b/cli-signer/rpc-client/src/client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt::{Debug, Formatter, Error as FmtError}; use std::io::{BufReader, BufRead}; diff --git a/cli-signer/rpc-client/src/lib.rs b/cli-signer/rpc-client/src/lib.rs index 2618f756b..c9b958122 100644 --- a/cli-signer/rpc-client/src/lib.rs +++ b/cli-signer/rpc-client/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . pub mod client; pub mod signer_client; diff --git a/cli-signer/rpc-client/src/signer_client.rs b/cli-signer/rpc-client/src/signer_client.rs index 339aafce4..5df8c790e 100644 --- a/cli-signer/rpc-client/src/signer_client.rs +++ b/cli-signer/rpc-client/src/signer_client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use client::{Rpc, RpcError}; use ethereum_types::U256; diff --git a/cli-signer/src/lib.rs b/cli-signer/src/lib.rs index b954e099e..85119965c 100644 --- a/cli-signer/src/lib.rs +++ b/cli-signer/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate ethereum_types; extern crate futures; diff --git a/ethash/benches/basic.rs b/ethash/benches/basic.rs index 0337ecee9..326924f1a 100644 --- a/ethash/benches/basic.rs +++ b/ethash/benches/basic.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #[macro_use] extern crate criterion; diff --git a/ethash/benches/progpow.rs b/ethash/benches/progpow.rs index e84bc602a..ff2b2b409 100644 --- a/ethash/benches/progpow.rs +++ b/ethash/benches/progpow.rs @@ -1,3 +1,19 @@ +// Copyright 2015-2020 Parity Technologies (UK) Ltd. +// This file is part of Open Ethereum. + +// Open Ethereum 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. + +// Open Ethereum 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 Open Ethereum. If not, see . + #[macro_use] extern crate criterion; diff --git a/ethash/src/cache.rs b/ethash/src/cache.rs index 594496a1e..dcd78d5eb 100644 --- a/ethash/src/cache.rs +++ b/ethash/src/cache.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use compute::Light; use either::Either; diff --git a/ethash/src/compute.rs b/ethash/src/compute.rs index f516d7e73..7d72fd5e9 100644 --- a/ethash/src/compute.rs +++ b/ethash/src/compute.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethash implementation //! See https://github.com/ethereum/wiki/wiki/Ethash diff --git a/ethash/src/keccak.rs b/ethash/src/keccak.rs index 7e5ea39b6..f77228d8a 100644 --- a/ethash/src/keccak.rs +++ b/ethash/src/keccak.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate keccak_hash as hash; diff --git a/ethash/src/lib.rs b/ethash/src/lib.rs index 4a0f728c5..7aba9c2fa 100644 --- a/ethash/src/lib.rs +++ b/ethash/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate common_types; extern crate either; diff --git a/ethash/src/progpow.rs b/ethash/src/progpow.rs index b02892a4a..ae64d3e16 100644 --- a/ethash/src/progpow.rs +++ b/ethash/src/progpow.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . //! ProgPoW (Programmatic Proof-of-Work) is the Ethereum network's proposed new Application-Specific Integrated //! Circuit (ASIC) resistant Proof-of-Work mining algorithm. diff --git a/ethash/src/seed_compute.rs b/ethash/src/seed_compute.rs index ff29fdb96..c96ad2196 100644 --- a/ethash/src/seed_compute.rs +++ b/ethash/src/seed_compute.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use shared; use keccak::{keccak_256, H256}; diff --git a/ethash/src/shared.rs b/ethash/src/shared.rs index dc9a893b2..e307e71d1 100644 --- a/ethash/src/shared.rs +++ b/ethash/src/shared.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use primal::is_prime; diff --git a/ethcore/account-db/src/lib.rs b/ethcore/account-db/src/lib.rs index 970380084..d7ca476bf 100644 --- a/ethcore/account-db/src/lib.rs +++ b/ethcore/account-db/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! DB backend wrapper for Account trie use ethereum_types::H256; diff --git a/ethcore/account-state/src/account.rs b/ethcore/account-state/src/account.rs index 572443f2a..0afe00a20 100644 --- a/ethcore/account-state/src/account.rs +++ b/ethcore/account-state/src/account.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Single account in the system. use std::cell::{Cell, RefCell}; diff --git a/ethcore/account-state/src/backend.rs b/ethcore/account-state/src/backend.rs index 5607119d1..a2fdfd844 100644 --- a/ethcore/account-state/src/backend.rs +++ b/ethcore/account-state/src/backend.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A minimal "state backend" trait: an abstraction over the sources of data //! a blockchain state may draw upon. diff --git a/ethcore/account-state/src/lib.rs b/ethcore/account-state/src/lib.rs index b7a8c421d..57ebb3ffe 100644 --- a/ethcore/account-state/src/lib.rs +++ b/ethcore/account-state/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Account state //! This crate contains code used to create, convert, and update Accounts and the code and storage diff --git a/ethcore/account-state/src/state.rs b/ethcore/account-state/src/state.rs index b7e02eef5..18b57093b 100644 --- a/ethcore/account-state/src/state.rs +++ b/ethcore/account-state/src/state.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A mutable state representation suitable to execute transactions. //! Generic over a `Backend`. Deals with `Account`s. diff --git a/ethcore/benches/builtin.rs b/ethcore/benches/builtin.rs index b518b8d50..ca58b324e 100644 --- a/ethcore/benches/builtin.rs +++ b/ethcore/benches/builtin.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #[macro_use] extern crate criterion; diff --git a/ethcore/block-gas-limit/src/lib.rs b/ethcore/block-gas-limit/src/lib.rs index c83689816..3e9608cdd 100644 --- a/ethcore/block-gas-limit/src/lib.rs +++ b/ethcore/block-gas-limit/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A client interface for interacting with the block gas limit contract. diff --git a/ethcore/block-reward/src/lib.rs b/ethcore/block-reward/src/lib.rs index ca7ab9513..e9b5938f1 100644 --- a/ethcore/block-reward/src/lib.rs +++ b/ethcore/block-reward/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Types for declaring block rewards and a client interface for interacting with a //! block reward contract. diff --git a/ethcore/blockchain/src/best_block.rs b/ethcore/blockchain/src/best_block.rs index b9ce1bd83..e60734c8e 100644 --- a/ethcore/blockchain/src/best_block.rs +++ b/ethcore/blockchain/src/best_block.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{H256, U256}; diff --git a/ethcore/blockchain/src/blockchain.rs b/ethcore/blockchain/src/blockchain.rs index 1819862b1..437059976 100644 --- a/ethcore/blockchain/src/blockchain.rs +++ b/ethcore/blockchain/src/blockchain.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain database. diff --git a/ethcore/blockchain/src/cache.rs b/ethcore/blockchain/src/cache.rs index 08c250028..9747fee51 100644 --- a/ethcore/blockchain/src/cache.rs +++ b/ethcore/blockchain/src/cache.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . /// Represents blockchain's in-memory cache size in bytes. #[derive(Debug)] diff --git a/ethcore/blockchain/src/config.rs b/ethcore/blockchain/src/config.rs index 48b85a415..ef473ee4a 100644 --- a/ethcore/blockchain/src/config.rs +++ b/ethcore/blockchain/src/config.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain configuration. diff --git a/ethcore/blockchain/src/generator.rs b/ethcore/blockchain/src/generator.rs index 6ca4f4704..5cb5cf4af 100644 --- a/ethcore/blockchain/src/generator.rs +++ b/ethcore/blockchain/src/generator.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain generator for tests. diff --git a/ethcore/blockchain/src/lib.rs b/ethcore/blockchain/src/lib.rs index 1ab921f89..5fa3be7a2 100644 --- a/ethcore/blockchain/src/lib.rs +++ b/ethcore/blockchain/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain database. @@ -37,4 +37,3 @@ pub use crate::{ }; pub use ethcore_db::keys::{BlockReceipts, BlockDetails, TransactionAddress, BlockNumberKey}; pub use common_types::tree_route::TreeRoute; - diff --git a/ethcore/blockchain/src/update.rs b/ethcore/blockchain/src/update.rs index 3b8e8d344..77a01b7ce 100644 --- a/ethcore/blockchain/src/update.rs +++ b/ethcore/blockchain/src/update.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::HashMap; diff --git a/ethcore/builtin/src/lib.rs b/ethcore/builtin/src/lib.rs index 45d954763..1e2e83898 100644 --- a/ethcore/builtin/src/lib.rs +++ b/ethcore/builtin/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Standard built-in contracts. diff --git a/ethcore/call-contract/src/call_contract.rs b/ethcore/call-contract/src/call_contract.rs index 68d7fefaf..1c56e0468 100644 --- a/ethcore/call-contract/src/call_contract.rs +++ b/ethcore/call-contract/src/call_contract.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Provides CallContract trait diff --git a/ethcore/call-contract/src/lib.rs b/ethcore/call-contract/src/lib.rs index a3f058798..776d715de 100644 --- a/ethcore/call-contract/src/lib.rs +++ b/ethcore/call-contract/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #![warn(missing_docs)] diff --git a/ethcore/client-traits/src/lib.rs b/ethcore/client-traits/src/lib.rs index 33d32c58f..79d050ae2 100644 --- a/ethcore/client-traits/src/lib.rs +++ b/ethcore/client-traits/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{ collections::BTreeMap, diff --git a/ethcore/db/src/cache_manager.rs b/ethcore/db/src/cache_manager.rs index cd3b037ae..6a93bdfa5 100644 --- a/ethcore/db/src/cache_manager.rs +++ b/ethcore/db/src/cache_manager.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Database cache manager diff --git a/ethcore/db/src/db.rs b/ethcore/db/src/db.rs index 811666ec7..5004858cb 100644 --- a/ethcore/db/src/db.rs +++ b/ethcore/db/src/db.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Database utilities and definitions. diff --git a/ethcore/db/src/keys.rs b/ethcore/db/src/keys.rs index a13396ef0..7d17b75c9 100644 --- a/ethcore/db/src/keys.rs +++ b/ethcore/db/src/keys.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain DB extras. diff --git a/ethcore/db/src/lib.rs b/ethcore/db/src/lib.rs index 30be0c40a..84d52df03 100644 --- a/ethcore/db/src/lib.rs +++ b/ethcore/db/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity Ethereum database access utilities. diff --git a/ethcore/engine/src/engine.rs b/ethcore/engine/src/engine.rs index 405bd4379..39118089d 100644 --- a/ethcore/engine/src/engine.rs +++ b/ethcore/engine/src/engine.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Consensus engine specification and basic implementations. diff --git a/ethcore/engine/src/lib.rs b/ethcore/engine/src/lib.rs index 323479014..162162f1c 100644 --- a/ethcore/engine/src/lib.rs +++ b/ethcore/engine/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! This crate defines the Engine trait and related types. diff --git a/ethcore/engine/src/signer.rs b/ethcore/engine/src/signer.rs index 540ede3fb..5a8a8485f 100644 --- a/ethcore/engine/src/signer.rs +++ b/ethcore/engine/src/signer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A signer used by Engines which need to sign messages. diff --git a/ethcore/engine/src/snapshot.rs b/ethcore/engine/src/snapshot.rs index 775868214..b3927a4e5 100644 --- a/ethcore/engine/src/snapshot.rs +++ b/ethcore/engine/src/snapshot.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! This module contains traits used while creating/restoring snapshots. They //! are here because they use and are used by the Engine trait itself. diff --git a/ethcore/engine/src/test_helpers.rs b/ethcore/engine/src/test_helpers.rs index e10a12cbb..cac1cfc39 100644 --- a/ethcore/engine/src/test_helpers.rs +++ b/ethcore/engine/src/test_helpers.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Test helpers for engine related tests diff --git a/ethcore/engines/authority-round/src/finality.rs b/ethcore/engines/authority-round/src/finality.rs index f0f5bd54a..99c303c9c 100644 --- a/ethcore/engines/authority-round/src/finality.rs +++ b/ethcore/engines/authority-round/src/finality.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Finality proof generation and checking. diff --git a/ethcore/engines/authority-round/src/lib.rs b/ethcore/engines/authority-round/src/lib.rs index b953950dd..a496d2ca0 100644 --- a/ethcore/engines/authority-round/src/lib.rs +++ b/ethcore/engines/authority-round/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A blockchain engine that supports a non-instant BFT proof-of-authority. //! diff --git a/ethcore/engines/authority-round/src/randomness.rs b/ethcore/engines/authority-round/src/randomness.rs index d300c602d..82e166de1 100644 --- a/ethcore/engines/authority-round/src/randomness.rs +++ b/ethcore/engines/authority-round/src/randomness.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! On-chain randomness generation for authority round //! diff --git a/ethcore/engines/authority-round/src/util.rs b/ethcore/engines/authority-round/src/util.rs index 9a99979db..a5797e6d2 100644 --- a/ethcore/engines/authority-round/src/util.rs +++ b/ethcore/engines/authority-round/src/util.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Utility functions. //! diff --git a/ethcore/engines/basic-authority/src/lib.rs b/ethcore/engines/basic-authority/src/lib.rs index 38ca8f972..cefd51d08 100644 --- a/ethcore/engines/basic-authority/src/lib.rs +++ b/ethcore/engines/basic-authority/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A blockchain engine that supports a basic, non-BFT proof-of-authority. diff --git a/ethcore/engines/clique/src/block_state.rs b/ethcore/engines/clique/src/block_state.rs index f082ee8d3..0db2b9079 100644 --- a/ethcore/engines/clique/src/block_state.rs +++ b/ethcore/engines/clique/src/block_state.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{ collections::{HashMap, BTreeSet, VecDeque}, diff --git a/ethcore/engines/clique/src/lib.rs b/ethcore/engines/clique/src/lib.rs index 6378d231a..587bbaa97 100644 --- a/ethcore/engines/clique/src/lib.rs +++ b/ethcore/engines/clique/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Implementation of the Clique PoA Engine. //! diff --git a/ethcore/engines/clique/src/params.rs b/ethcore/engines/clique/src/params.rs index b1fd56331..81c7258ad 100644 --- a/ethcore/engines/clique/src/params.rs +++ b/ethcore/engines/clique/src/params.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Clique specific parameters. diff --git a/ethcore/engines/clique/src/tests.rs b/ethcore/engines/clique/src/tests.rs index 2100a32e3..27006c07c 100644 --- a/ethcore/engines/clique/src/tests.rs +++ b/ethcore/engines/clique/src/tests.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Consensus tests for `PoA Clique Engine`, see http://eips.ethereum.org/EIPS/eip-225 for more information diff --git a/ethcore/engines/clique/src/util.rs b/ethcore/engines/clique/src/util.rs index 3c28f86b8..0378fd237 100644 --- a/ethcore/engines/clique/src/util.rs +++ b/ethcore/engines/clique/src/util.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::BTreeSet; diff --git a/ethcore/engines/ethash/src/lib.rs b/ethcore/engines/ethash/src/lib.rs index 1f9223df7..5f3a628e6 100644 --- a/ethcore/engines/ethash/src/lib.rs +++ b/ethcore/engines/ethash/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp; use std::collections::BTreeMap; diff --git a/ethcore/engines/instant-seal/src/lib.rs b/ethcore/engines/instant-seal/src/lib.rs index ff0376b33..9a52df295 100644 --- a/ethcore/engines/instant-seal/src/lib.rs +++ b/ethcore/engines/instant-seal/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::atomic::{AtomicU64, Ordering}; diff --git a/ethcore/engines/null-engine/src/lib.rs b/ethcore/engines/null-engine/src/lib.rs index 51633b9e5..54218a239 100644 --- a/ethcore/engines/null-engine/src/lib.rs +++ b/ethcore/engines/null-engine/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use common_types::{ BlockNumber, diff --git a/ethcore/engines/validator-set/src/contract.rs b/ethcore/engines/validator-set/src/contract.rs index 295ce32f0..25b77b6e7 100644 --- a/ethcore/engines/validator-set/src/contract.rs +++ b/ethcore/engines/validator-set/src/contract.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . /// Validator set maintained in a contract, updated using `getValidators` method. /// It can also report validators for misbehaviour with two levels: `reportMalicious` and `reportBenign`. diff --git a/ethcore/engines/validator-set/src/lib.rs b/ethcore/engines/validator-set/src/lib.rs index 5b649182b..1b47e195a 100644 --- a/ethcore/engines/validator-set/src/lib.rs +++ b/ethcore/engines/validator-set/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . /// Validator lists. diff --git a/ethcore/engines/validator-set/src/multi.rs b/ethcore/engines/validator-set/src/multi.rs index 7ee962c81..39ed4cf38 100644 --- a/ethcore/engines/validator-set/src/multi.rs +++ b/ethcore/engines/validator-set/src/multi.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . /// Validator set changing at fork blocks. diff --git a/ethcore/engines/validator-set/src/safe_contract.rs b/ethcore/engines/validator-set/src/safe_contract.rs index fb73a9ec3..985874baf 100644 --- a/ethcore/engines/validator-set/src/safe_contract.rs +++ b/ethcore/engines/validator-set/src/safe_contract.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . /// Validator set maintained in a contract, updated using `getValidators` method. diff --git a/ethcore/engines/validator-set/src/simple_list.rs b/ethcore/engines/validator-set/src/simple_list.rs index 226fab470..a05761a89 100644 --- a/ethcore/engines/validator-set/src/simple_list.rs +++ b/ethcore/engines/validator-set/src/simple_list.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . /// Preconfigured validator list. diff --git a/ethcore/engines/validator-set/src/test.rs b/ethcore/engines/validator-set/src/test.rs index 6ab5bc519..e1294eac6 100644 --- a/ethcore/engines/validator-set/src/test.rs +++ b/ethcore/engines/validator-set/src/test.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . /// Used for Engine testing. diff --git a/ethcore/evm/benches/basic.rs b/ethcore/evm/benches/basic.rs index 9a5ccec7b..fd9dd3e9d 100644 --- a/ethcore/evm/benches/basic.rs +++ b/ethcore/evm/benches/basic.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! benchmarking for EVM diff --git a/ethcore/evm/src/evm.rs b/ethcore/evm/src/evm.rs index e219aa838..34859d251 100644 --- a/ethcore/evm/src/evm.rs +++ b/ethcore/evm/src/evm.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Evm interface. diff --git a/ethcore/evm/src/factory.rs b/ethcore/evm/src/factory.rs index e1a95ca9a..a41372ba6 100644 --- a/ethcore/evm/src/factory.rs +++ b/ethcore/evm/src/factory.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Evm factory. //! diff --git a/ethcore/evm/src/instructions.rs b/ethcore/evm/src/instructions.rs index e8fef9e74..e0d12bf00 100644 --- a/ethcore/evm/src/instructions.rs +++ b/ethcore/evm/src/instructions.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! VM Instructions list and utility functions diff --git a/ethcore/evm/src/interpreter/gasometer.rs b/ethcore/evm/src/interpreter/gasometer.rs index 2bf65d4a4..5f8692d40 100644 --- a/ethcore/evm/src/interpreter/gasometer.rs +++ b/ethcore/evm/src/interpreter/gasometer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp; use ethereum_types::{BigEndianHash, U256}; diff --git a/ethcore/evm/src/interpreter/informant.rs b/ethcore/evm/src/interpreter/informant.rs index 216bb5400..675687a9f 100644 --- a/ethcore/evm/src/interpreter/informant.rs +++ b/ethcore/evm/src/interpreter/informant.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . pub use self::inner::*; diff --git a/ethcore/evm/src/interpreter/memory.rs b/ethcore/evm/src/interpreter/memory.rs index ff05a495b..fa5f015cc 100644 --- a/ethcore/evm/src/interpreter/memory.rs +++ b/ethcore/evm/src/interpreter/memory.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::U256; use vm::ReturnData; diff --git a/ethcore/evm/src/interpreter/mod.rs b/ethcore/evm/src/interpreter/mod.rs index 42b555ebb..fbf7b6a6c 100644 --- a/ethcore/evm/src/interpreter/mod.rs +++ b/ethcore/evm/src/interpreter/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Rust VM implementation diff --git a/ethcore/evm/src/interpreter/shared_cache.rs b/ethcore/evm/src/interpreter/shared_cache.rs index 6d6f0874b..10076c5f9 100644 --- a/ethcore/evm/src/interpreter/shared_cache.rs +++ b/ethcore/evm/src/interpreter/shared_cache.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use hash::KECCAK_EMPTY; diff --git a/ethcore/evm/src/interpreter/stack.rs b/ethcore/evm/src/interpreter/stack.rs index bec47576d..042096154 100644 --- a/ethcore/evm/src/interpreter/stack.rs +++ b/ethcore/evm/src/interpreter/stack.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use instructions; diff --git a/ethcore/evm/src/lib.rs b/ethcore/evm/src/lib.rs index ea412f992..c8e5a7d0a 100644 --- a/ethcore/evm/src/lib.rs +++ b/ethcore/evm/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethereum virtual machine. diff --git a/ethcore/evm/src/tests.rs b/ethcore/evm/src/tests.rs index dce9deda9..a7227ebc3 100644 --- a/ethcore/evm/src/tests.rs +++ b/ethcore/evm/src/tests.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt::Debug; use std::str::FromStr; diff --git a/ethcore/executive-state/benches/execution.rs b/ethcore/executive-state/benches/execution.rs index 56fe564ee..2386c7d76 100644 --- a/ethcore/executive-state/benches/execution.rs +++ b/ethcore/executive-state/benches/execution.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Benchmark transaction execution of two blocks from mainnet, both of average //! size (~35kb as RLP), one with 229 transactions (#8481475, Constantinople era) diff --git a/ethcore/executive-state/src/lib.rs b/ethcore/executive-state/src/lib.rs index 0751aac8c..de6fd11ca 100644 --- a/ethcore/executive-state/src/lib.rs +++ b/ethcore/executive-state/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Execute transactions and modify State. This is glue code between the `ethcore` and //! `account-state` crates and contains everything that requires `Machine` or `Executive` (or types diff --git a/ethcore/light/src/cache.rs b/ethcore/light/src/cache.rs index 646144be5..338016198 100644 --- a/ethcore/light/src/cache.rs +++ b/ethcore/light/src/cache.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Cache for data fetched from the network. //! diff --git a/ethcore/light/src/cht.rs b/ethcore/light/src/cht.rs index be98b3c1b..6b9bc0a0b 100644 --- a/ethcore/light/src/cht.rs +++ b/ethcore/light/src/cht.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Canonical hash trie definitions and helper functions. //! diff --git a/ethcore/light/src/client/fetch.rs b/ethcore/light/src/client/fetch.rs index 896e5f5e2..18ece3234 100644 --- a/ethcore/light/src/client/fetch.rs +++ b/ethcore/light/src/client/fetch.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Trait for fetching chain data. diff --git a/ethcore/light/src/client/header_chain.rs b/ethcore/light/src/client/header_chain.rs index d21d70532..d5098db7d 100644 --- a/ethcore/light/src/client/header_chain.rs +++ b/ethcore/light/src/client/header_chain.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Light client header chain. //! diff --git a/ethcore/light/src/client/mod.rs b/ethcore/light/src/client/mod.rs index 073d1dbfd..44f933902 100644 --- a/ethcore/light/src/client/mod.rs +++ b/ethcore/light/src/client/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Light client implementation. Stores data from light sync diff --git a/ethcore/light/src/client/service.rs b/ethcore/light/src/client/service.rs index 0d901cdb8..903404b08 100644 --- a/ethcore/light/src/client/service.rs +++ b/ethcore/light/src/client/service.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Minimal IO service for light client. //! Just handles block import messages and passes them to the client. diff --git a/ethcore/light/src/lib.rs b/ethcore/light/src/lib.rs index 3fa28888f..75ed983d1 100644 --- a/ethcore/light/src/lib.rs +++ b/ethcore/light/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Light client logic and implementation. //! diff --git a/ethcore/light/src/net/context.rs b/ethcore/light/src/net/context.rs index 823898105..9a9feebdd 100644 --- a/ethcore/light/src/net/context.rs +++ b/ethcore/light/src/net/context.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! I/O and event context generalizations. diff --git a/ethcore/light/src/net/error.rs b/ethcore/light/src/net/error.rs index 0efa50ab2..b90d824be 100644 --- a/ethcore/light/src/net/error.rs +++ b/ethcore/light/src/net/error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Defines error types and levels of punishment to use upon //! encountering. diff --git a/ethcore/light/src/net/load_timer.rs b/ethcore/light/src/net/load_timer.rs index 9c0117f9b..3fda7b8d3 100644 --- a/ethcore/light/src/net/load_timer.rs +++ b/ethcore/light/src/net/load_timer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Request load timer and distribution manager. //! diff --git a/ethcore/light/src/net/mod.rs b/ethcore/light/src/net/mod.rs index 30a4b47eb..33b6d6c41 100644 --- a/ethcore/light/src/net/mod.rs +++ b/ethcore/light/src/net/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! PLP Protocol Version 1 implementation. //! diff --git a/ethcore/light/src/net/request_credits.rs b/ethcore/light/src/net/request_credits.rs index 6fe834e5e..01da2e1fc 100644 --- a/ethcore/light/src/net/request_credits.rs +++ b/ethcore/light/src/net/request_credits.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Request credit management. //! diff --git a/ethcore/light/src/net/request_set.rs b/ethcore/light/src/net/request_set.rs index 18f3b73cf..e91c43e4a 100644 --- a/ethcore/light/src/net/request_set.rs +++ b/ethcore/light/src/net/request_set.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Pending request set. //! diff --git a/ethcore/light/src/net/status.rs b/ethcore/light/src/net/status.rs index b2f0525fe..fb55d2ba2 100644 --- a/ethcore/light/src/net/status.rs +++ b/ethcore/light/src/net/status.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Peer status and capabilities. diff --git a/ethcore/light/src/net/tests/mod.rs b/ethcore/light/src/net/tests/mod.rs index 43b1feea0..734f2165f 100644 --- a/ethcore/light/src/net/tests/mod.rs +++ b/ethcore/light/src/net/tests/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tests for the `LightProtocol` implementation. //! These don't test of the higher level logic on top of diff --git a/ethcore/light/src/on_demand/mod.rs b/ethcore/light/src/on_demand/mod.rs index 121c7c045..8821f5e34 100644 --- a/ethcore/light/src/on_demand/mod.rs +++ b/ethcore/light/src/on_demand/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! On-demand chain requests over LES. This is a major building block for RPCs. //! The request service is implemented using Futures. Higher level request handlers diff --git a/ethcore/light/src/on_demand/request.rs b/ethcore/light/src/on_demand/request.rs index 5fec13202..0e5299496 100644 --- a/ethcore/light/src/on_demand/request.rs +++ b/ethcore/light/src/on_demand/request.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Request types, verification, and verification errors. diff --git a/ethcore/light/src/on_demand/request_guard.rs b/ethcore/light/src/on_demand/request_guard.rs index b81ca1d1d..46187a7f6 100644 --- a/ethcore/light/src/on_demand/request_guard.rs +++ b/ethcore/light/src/on_demand/request_guard.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use failsafe; use std::time::Duration; diff --git a/ethcore/light/src/on_demand/response_guard.rs b/ethcore/light/src/on_demand/response_guard.rs index 9a1c801df..30d6a063c 100644 --- a/ethcore/light/src/on_demand/response_guard.rs +++ b/ethcore/light/src/on_demand/response_guard.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! ResponseGuard implementation. //! It is responsible for the receiving end of `Pending Request` (see `OnDemand` module docs for more information) diff --git a/ethcore/light/src/on_demand/tests.rs b/ethcore/light/src/on_demand/tests.rs index 0e6ebf539..73f9dd33f 100644 --- a/ethcore/light/src/on_demand/tests.rs +++ b/ethcore/light/src/on_demand/tests.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tests for the on-demand service. diff --git a/ethcore/light/src/provider.rs b/ethcore/light/src/provider.rs index 6b2f600a6..b09e8b1e2 100644 --- a/ethcore/light/src/provider.rs +++ b/ethcore/light/src/provider.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A provider for the PIP protocol. This is typically a full node, who can //! give as much data as necessary to its peers. diff --git a/ethcore/light/src/transaction_queue.rs b/ethcore/light/src/transaction_queue.rs index 75dd95eef..342b04c65 100644 --- a/ethcore/light/src/transaction_queue.rs +++ b/ethcore/light/src/transaction_queue.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Light Transaction Queue. //! diff --git a/ethcore/light/src/types/mod.rs b/ethcore/light/src/types/mod.rs index 8b5ab6290..832772a8e 100644 --- a/ethcore/light/src/types/mod.rs +++ b/ethcore/light/src/types/mod.rs @@ -1,17 +1,17 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . pub mod request; diff --git a/ethcore/light/src/types/request/batch.rs b/ethcore/light/src/types/request/batch.rs index 1d4c61b09..95449ce24 100644 --- a/ethcore/light/src/types/request/batch.rs +++ b/ethcore/light/src/types/request/batch.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Request chain builder utility. //! Push requests with `push`. Back-references and data required to verify responses must be diff --git a/ethcore/light/src/types/request/mod.rs b/ethcore/light/src/types/request/mod.rs index 946bc9b0b..f7f0c8cc0 100644 --- a/ethcore/light/src/types/request/mod.rs +++ b/ethcore/light/src/types/request/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Light protocol request types. diff --git a/ethcore/machine/benches/builtin_contract.rs b/ethcore/machine/benches/builtin_contract.rs index af8d32b99..e9de6f241 100644 --- a/ethcore/machine/benches/builtin_contract.rs +++ b/ethcore/machine/benches/builtin_contract.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Benchmarking of calling builtin contract diff --git a/ethcore/machine/src/executed.rs b/ethcore/machine/src/executed.rs index d83a5832e..030556ef4 100644 --- a/ethcore/machine/src/executed.rs +++ b/ethcore/machine/src/executed.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction execution format module. diff --git a/ethcore/machine/src/executed_block.rs b/ethcore/machine/src/executed_block.rs index dac690ece..593fb1f11 100644 --- a/ethcore/machine/src/executed_block.rs +++ b/ethcore/machine/src/executed_block.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! `ExecutedBlock` is the underlying data structure used by other block types to store block //! related info. As a block goes through processing we use different types to signal its state: diff --git a/ethcore/machine/src/executive.rs b/ethcore/machine/src/executive.rs index 131817222..cda229ddb 100644 --- a/ethcore/machine/src/executive.rs +++ b/ethcore/machine/src/executive.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction Execution environment. diff --git a/ethcore/machine/src/externalities.rs b/ethcore/machine/src/externalities.rs index 9a102ceed..529dda7cd 100644 --- a/ethcore/machine/src/externalities.rs +++ b/ethcore/machine/src/externalities.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction Execution environment. diff --git a/ethcore/machine/src/lib.rs b/ethcore/machine/src/lib.rs index b2456e9fc..d4e178f93 100644 --- a/ethcore/machine/src/lib.rs +++ b/ethcore/machine/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! This crate provides a state machine and the facilities needed to execute transactions and the //! code contained therein, as well as contract based transaction permissions. All ethereum diff --git a/ethcore/machine/src/machine.rs b/ethcore/machine/src/machine.rs index 61643e5aa..30ec44a5a 100644 --- a/ethcore/machine/src/machine.rs +++ b/ethcore/machine/src/machine.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethereum-like state machine definition. diff --git a/ethcore/machine/src/substate.rs b/ethcore/machine/src/substate.rs index c8cac6f50..65e93e266 100644 --- a/ethcore/machine/src/substate.rs +++ b/ethcore/machine/src/substate.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Execution environment substate. diff --git a/ethcore/machine/src/test_helpers.rs b/ethcore/machine/src/test_helpers.rs index 2a1b6ac8d..ffea1f9f9 100644 --- a/ethcore/machine/src/test_helpers.rs +++ b/ethcore/machine/src/test_helpers.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Provide facilities to create `Machine` instances for testing various networks. diff --git a/ethcore/machine/src/transaction_ext.rs b/ethcore/machine/src/transaction_ext.rs index 2182d8351..686123e3d 100644 --- a/ethcore/machine/src/transaction_ext.rs +++ b/ethcore/machine/src/transaction_ext.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethereum transaction diff --git a/ethcore/machine/src/tx_filter.rs b/ethcore/machine/src/tx_filter.rs index bbf2a6eb9..3d3caff61 100644 --- a/ethcore/machine/src/tx_filter.rs +++ b/ethcore/machine/src/tx_filter.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Smart contract based transaction filter. diff --git a/ethcore/node-filter/src/lib.rs b/ethcore/node-filter/src/lib.rs index a3fb87815..6ecd35431 100644 --- a/ethcore/node-filter/src/lib.rs +++ b/ethcore/node-filter/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Smart contract based node filter. diff --git a/ethcore/pod/src/account.rs b/ethcore/pod/src/account.rs index e0b11be72..8dd0b7b09 100644 --- a/ethcore/pod/src/account.rs +++ b/ethcore/pod/src/account.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Account system expressed in Plain Old Data. use log::warn; diff --git a/ethcore/pod/src/lib.rs b/ethcore/pod/src/lib.rs index 489512d86..311338c96 100644 --- a/ethcore/pod/src/lib.rs +++ b/ethcore/pod/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . pub mod account; pub mod state; diff --git a/ethcore/pod/src/state.rs b/ethcore/pod/src/state.rs index 9ce8f5aea..6f8268cdc 100644 --- a/ethcore/pod/src/state.rs +++ b/ethcore/pod/src/state.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! State of all accounts in the system expressed in Plain Old Data. diff --git a/ethcore/private-tx/src/encryptor.rs b/ethcore/private-tx/src/encryptor.rs index 949419af7..05db0b28e 100644 --- a/ethcore/private-tx/src/encryptor.rs +++ b/ethcore/private-tx/src/encryptor.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Encryption providers. diff --git a/ethcore/private-tx/src/error.rs b/ethcore/private-tx/src/error.rs index 4dea9c091..c1780906d 100644 --- a/ethcore/private-tx/src/error.rs +++ b/ethcore/private-tx/src/error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::error; use derive_more::Display; diff --git a/ethcore/private-tx/src/key_server_keys.rs b/ethcore/private-tx/src/key_server_keys.rs index 13da47253..71866905b 100644 --- a/ethcore/private-tx/src/key_server_keys.rs +++ b/ethcore/private-tx/src/key_server_keys.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . //! Wrapper around key server responsible for access keys processing. diff --git a/ethcore/private-tx/src/lib.rs b/ethcore/private-tx/src/lib.rs index a0ebb2cbd..db79076f1 100644 --- a/ethcore/private-tx/src/lib.rs +++ b/ethcore/private-tx/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Private transactions module. diff --git a/ethcore/private-tx/src/log.rs b/ethcore/private-tx/src/log.rs index 44b473bca..7224da375 100644 --- a/ethcore/private-tx/src/log.rs +++ b/ethcore/private-tx/src/log.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . //! Private transactions logs. diff --git a/ethcore/private-tx/src/messages.rs b/ethcore/private-tx/src/messages.rs index 45c2eb53a..392a9f458 100644 --- a/ethcore/private-tx/src/messages.rs +++ b/ethcore/private-tx/src/messages.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{H256, U256, Address, BigEndianHash}; use bytes::Bytes; diff --git a/ethcore/private-tx/src/private_state_db.rs b/ethcore/private-tx/src/private_state_db.rs index c241cac61..54ad3f2ce 100644 --- a/ethcore/private-tx/src/private_state_db.rs +++ b/ethcore/private-tx/src/private_state_db.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use ethereum_types::H256; diff --git a/ethcore/private-tx/src/private_transactions.rs b/ethcore/private-tx/src/private_transactions.rs index 6509ccd8e..927e838ea 100644 --- a/ethcore/private-tx/src/private_transactions.rs +++ b/ethcore/private-tx/src/private_transactions.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use std::cmp; diff --git a/ethcore/private-tx/src/state_store.rs b/ethcore/private-tx/src/state_store.rs index 87f046c9e..ad567c533 100644 --- a/ethcore/private-tx/src/state_store.rs +++ b/ethcore/private-tx/src/state_store.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::{HashSet, HashMap}; use std::sync::Arc; diff --git a/ethcore/private-tx/tests/private_contract.rs b/ethcore/private-tx/tests/private_contract.rs index 2748a89ac..84a505f38 100644 --- a/ethcore/private-tx/tests/private_contract.rs +++ b/ethcore/private-tx/tests/private_contract.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Contract for private transactions tests. diff --git a/ethcore/service/src/lib.rs b/ethcore/service/src/lib.rs index 61274e6fe..e700f4092 100644 --- a/ethcore/service/src/lib.rs +++ b/ethcore/service/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate ansi_term; extern crate common_types; diff --git a/ethcore/service/src/service.rs b/ethcore/service/src/service.rs index d2eac4a2e..eaed9aa5d 100644 --- a/ethcore/service/src/service.rs +++ b/ethcore/service/src/service.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Creates and registers client and network services. diff --git a/ethcore/snapshot/benches/to_fat_rlps.rs b/ethcore/snapshot/benches/to_fat_rlps.rs index 743d3d788..1c5de444e 100644 --- a/ethcore/snapshot/benches/to_fat_rlps.rs +++ b/ethcore/snapshot/benches/to_fat_rlps.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Benchmark snapshot::account::to_fat_rlps() which is a hot call during snapshots. diff --git a/ethcore/snapshot/snapshot-tests/src/abridged_block.rs b/ethcore/snapshot/snapshot-tests/src/abridged_block.rs index 715177bc5..87c04186d 100644 --- a/ethcore/snapshot/snapshot-tests/src/abridged_block.rs +++ b/ethcore/snapshot/snapshot-tests/src/abridged_block.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tests for block RLP encoding diff --git a/ethcore/snapshot/snapshot-tests/src/account.rs b/ethcore/snapshot/snapshot-tests/src/account.rs index ab39d773a..43b917e45 100644 --- a/ethcore/snapshot/snapshot-tests/src/account.rs +++ b/ethcore/snapshot/snapshot-tests/src/account.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tests for account state encoding and decoding diff --git a/ethcore/snapshot/snapshot-tests/src/helpers.rs b/ethcore/snapshot/snapshot-tests/src/helpers.rs index d32b50e9a..02593f79a 100644 --- a/ethcore/snapshot/snapshot-tests/src/helpers.rs +++ b/ethcore/snapshot/snapshot-tests/src/helpers.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Snapshot test helpers. These are used to build blockchains and state tries //! which can be queried before and after a full snapshot/restore cycle. diff --git a/ethcore/snapshot/snapshot-tests/src/io.rs b/ethcore/snapshot/snapshot-tests/src/io.rs index 69952f6c1..d1a2707a9 100644 --- a/ethcore/snapshot/snapshot-tests/src/io.rs +++ b/ethcore/snapshot/snapshot-tests/src/io.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tests for snapshot i/o. diff --git a/ethcore/snapshot/snapshot-tests/src/lib.rs b/ethcore/snapshot/snapshot-tests/src/lib.rs index 26d603a27..4762f4a2a 100644 --- a/ethcore/snapshot/snapshot-tests/src/lib.rs +++ b/ethcore/snapshot/snapshot-tests/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Snapshot tests. diff --git a/ethcore/snapshot/snapshot-tests/src/proof_of_authority.rs b/ethcore/snapshot/snapshot-tests/src/proof_of_authority.rs index 4dadf6cfb..696398c53 100644 --- a/ethcore/snapshot/snapshot-tests/src/proof_of_authority.rs +++ b/ethcore/snapshot/snapshot-tests/src/proof_of_authority.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! PoA block chunker and rebuilder tests. diff --git a/ethcore/snapshot/snapshot-tests/src/proof_of_work.rs b/ethcore/snapshot/snapshot-tests/src/proof_of_work.rs index 0a1fb746a..d89003e64 100644 --- a/ethcore/snapshot/snapshot-tests/src/proof_of_work.rs +++ b/ethcore/snapshot/snapshot-tests/src/proof_of_work.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! PoW block chunker and rebuilder tests. diff --git a/ethcore/snapshot/snapshot-tests/src/service.rs b/ethcore/snapshot/snapshot-tests/src/service.rs index f7e3be3f9..21ec09375 100644 --- a/ethcore/snapshot/snapshot-tests/src/service.rs +++ b/ethcore/snapshot/snapshot-tests/src/service.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tests for the snapshot service. diff --git a/ethcore/snapshot/snapshot-tests/src/state.rs b/ethcore/snapshot/snapshot-tests/src/state.rs index e0602b976..e684eb4ec 100644 --- a/ethcore/snapshot/snapshot-tests/src/state.rs +++ b/ethcore/snapshot/snapshot-tests/src/state.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! State snapshotting tests. diff --git a/ethcore/snapshot/snapshot-tests/src/watcher.rs b/ethcore/snapshot/snapshot-tests/src/watcher.rs index 73dbe9131..5240eb09c 100644 --- a/ethcore/snapshot/snapshot-tests/src/watcher.rs +++ b/ethcore/snapshot/snapshot-tests/src/watcher.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tests for block RLP encoding diff --git a/ethcore/snapshot/src/account.rs b/ethcore/snapshot/src/account.rs index dd7650c32..2e7e51afe 100644 --- a/ethcore/snapshot/src/account.rs +++ b/ethcore/snapshot/src/account.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Account state encoding and decoding diff --git a/ethcore/snapshot/src/block.rs b/ethcore/snapshot/src/block.rs index 3436f5a52..44442ff3e 100644 --- a/ethcore/snapshot/src/block.rs +++ b/ethcore/snapshot/src/block.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Block RLP compression. diff --git a/ethcore/snapshot/src/consensus/authority.rs b/ethcore/snapshot/src/consensus/authority.rs index eb843a2e2..8d85cb36b 100644 --- a/ethcore/snapshot/src/consensus/authority.rs +++ b/ethcore/snapshot/src/consensus/authority.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Secondary chunk creation and restoration, implementation for proof-of-authority //! based engines. diff --git a/ethcore/snapshot/src/consensus/mod.rs b/ethcore/snapshot/src/consensus/mod.rs index a753441dc..17138bba1 100644 --- a/ethcore/snapshot/src/consensus/mod.rs +++ b/ethcore/snapshot/src/consensus/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Secondary chunk creation and restoration, implementations for different consensus //! engines. diff --git a/ethcore/snapshot/src/consensus/work.rs b/ethcore/snapshot/src/consensus/work.rs index e1715c026..df6c598aa 100644 --- a/ethcore/snapshot/src/consensus/work.rs +++ b/ethcore/snapshot/src/consensus/work.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Secondary chunk creation and restoration, implementation for proof-of-work //! chains. diff --git a/ethcore/snapshot/src/io.rs b/ethcore/snapshot/src/io.rs index b3561fbfa..822699bf2 100644 --- a/ethcore/snapshot/src/io.rs +++ b/ethcore/snapshot/src/io.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Snapshot i/o. //! Ways of writing and reading snapshots. This module supports writing and reading diff --git a/ethcore/snapshot/src/lib.rs b/ethcore/snapshot/src/lib.rs index 4c119d559..0694bc230 100644 --- a/ethcore/snapshot/src/lib.rs +++ b/ethcore/snapshot/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Snapshot creation, restoration, and network service. //! diff --git a/ethcore/snapshot/src/service.rs b/ethcore/snapshot/src/service.rs index b474ead54..b4e768f46 100644 --- a/ethcore/snapshot/src/service.rs +++ b/ethcore/snapshot/src/service.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Snapshot network service implementation. diff --git a/ethcore/snapshot/src/traits.rs b/ethcore/snapshot/src/traits.rs index 8caab6c1b..2528c0c88 100644 --- a/ethcore/snapshot/src/traits.rs +++ b/ethcore/snapshot/src/traits.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::{Arc, atomic::AtomicBool}; diff --git a/ethcore/snapshot/src/watcher.rs b/ethcore/snapshot/src/watcher.rs index 534c1c1bd..3a25c449b 100644 --- a/ethcore/snapshot/src/watcher.rs +++ b/ethcore/snapshot/src/watcher.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Watcher for snapshot-related chain events. diff --git a/ethcore/spec/src/chain.rs b/ethcore/spec/src/chain.rs index f714530f0..355c16974 100644 --- a/ethcore/spec/src/chain.rs +++ b/ethcore/spec/src/chain.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Load chain specifications for all chains supported by the parity-ethereum client. diff --git a/ethcore/spec/src/genesis.rs b/ethcore/spec/src/genesis.rs index 92eb969c4..64e191fd8 100644 --- a/ethcore/spec/src/genesis.rs +++ b/ethcore/spec/src/genesis.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{H256, U256, Address}; use ethjson; diff --git a/ethcore/spec/src/lib.rs b/ethcore/spec/src/lib.rs index 8a3069e9f..5fa9df329 100644 --- a/ethcore/spec/src/lib.rs +++ b/ethcore/spec/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain params. diff --git a/ethcore/spec/src/seal.rs b/ethcore/spec/src/seal.rs index 4f86f6e98..dd7449600 100644 --- a/ethcore/spec/src/seal.rs +++ b/ethcore/spec/src/seal.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Spec seal. diff --git a/ethcore/spec/src/spec.rs b/ethcore/spec/src/spec.rs index da45c3b8c..f261cff24 100644 --- a/ethcore/spec/src/spec.rs +++ b/ethcore/spec/src/spec.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parameters for a block chain. diff --git a/ethcore/src/block.rs b/ethcore/src/block.rs index 90b9a9c76..5ae0e268b 100644 --- a/ethcore/src/block.rs +++ b/ethcore/src/block.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Base data structure of this module is `Block`. //! diff --git a/ethcore/src/client/ancient_import.rs b/ethcore/src/client/ancient_import.rs index 87c1ed397..6e86144aa 100644 --- a/ethcore/src/client/ancient_import.rs +++ b/ethcore/src/client/ancient_import.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Helper for ancient block import. diff --git a/ethcore/src/client/bad_blocks.rs b/ethcore/src/client/bad_blocks.rs index a08c0851a..d1b0e4ae9 100644 --- a/ethcore/src/client/bad_blocks.rs +++ b/ethcore/src/client/bad_blocks.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Stores recently seen bad blocks. diff --git a/ethcore/src/client/client.rs b/ethcore/src/client/client.rs index 5211e4178..bc5079584 100644 --- a/ethcore/src/client/client.rs +++ b/ethcore/src/client/client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp; use std::collections::{BTreeMap, HashSet, VecDeque}; diff --git a/ethcore/src/client/config.rs b/ethcore/src/client/config.rs index 409800619..d91d2022d 100644 --- a/ethcore/src/client/config.rs +++ b/ethcore/src/client/config.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::str::FromStr; diff --git a/ethcore/src/client/mod.rs b/ethcore/src/client/mod.rs index c361be211..226c6c1c2 100644 --- a/ethcore/src/client/mod.rs +++ b/ethcore/src/client/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain database client. diff --git a/ethcore/src/client/traits.rs b/ethcore/src/client/traits.rs index dbe33fce9..0f0518ab0 100644 --- a/ethcore/src/client/traits.rs +++ b/ethcore/src/client/traits.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use bytes::Bytes; use ethereum_types::{H256, U256, Address}; diff --git a/ethcore/src/json_tests/chain.rs b/ethcore/src/json_tests/chain.rs index 848c9e5a1..e17c5bcb1 100644 --- a/ethcore/src/json_tests/chain.rs +++ b/ethcore/src/json_tests/chain.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::path::Path; use std::sync::Arc; diff --git a/ethcore/src/json_tests/difficulty.rs b/ethcore/src/json_tests/difficulty.rs index 15626f48d..c372d4a2e 100644 --- a/ethcore/src/json_tests/difficulty.rs +++ b/ethcore/src/json_tests/difficulty.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::path::Path; diff --git a/ethcore/src/json_tests/executive.rs b/ethcore/src/json_tests/executive.rs index 212197e90..93620254d 100644 --- a/ethcore/src/json_tests/executive.rs +++ b/ethcore/src/json_tests/executive.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::path::Path; use std::sync::Arc; diff --git a/ethcore/src/json_tests/macros.rs b/ethcore/src/json_tests/macros.rs index 8735352f0..4fdbeb0be 100644 --- a/ethcore/src/json_tests/macros.rs +++ b/ethcore/src/json_tests/macros.rs @@ -1,3 +1,19 @@ +// Copyright 2015-2020 Parity Technologies (UK) Ltd. +// This file is part of Open Ethereum. + +// Open Ethereum 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. + +// Open Ethereum 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 Open Ethereum. If not, see . + //! Helper macros for running the `JSON tests` /// Declares a test: diff --git a/ethcore/src/json_tests/mod.rs b/ethcore/src/json_tests/mod.rs index 04b94b23f..023dc6e2c 100644 --- a/ethcore/src/json_tests/mod.rs +++ b/ethcore/src/json_tests/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Helpers and tests for operating on `JSON` tests. diff --git a/ethcore/src/json_tests/skip.rs b/ethcore/src/json_tests/skip.rs index 132103f87..cd9b7e388 100644 --- a/ethcore/src/json_tests/skip.rs +++ b/ethcore/src/json_tests/skip.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! State or blockchain tests to skip. //! diff --git a/ethcore/src/json_tests/state.rs b/ethcore/src/json_tests/state.rs index ddc81991a..5c9a6e12e 100644 --- a/ethcore/src/json_tests/state.rs +++ b/ethcore/src/json_tests/state.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::path::Path; use super::test_common::*; diff --git a/ethcore/src/json_tests/test_common.rs b/ethcore/src/json_tests/test_common.rs index ca7983585..d8d87385d 100644 --- a/ethcore/src/json_tests/test_common.rs +++ b/ethcore/src/json_tests/test_common.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::HashSet; use std::io::Read; diff --git a/ethcore/src/json_tests/transaction.rs b/ethcore/src/json_tests/transaction.rs index 0066b6815..97a4f48b2 100644 --- a/ethcore/src/json_tests/transaction.rs +++ b/ethcore/src/json_tests/transaction.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::path::Path; use super::test_common::*; diff --git a/ethcore/src/json_tests/trie.rs b/ethcore/src/json_tests/trie.rs index 1820458f2..bb1fe8f6a 100644 --- a/ethcore/src/json_tests/trie.rs +++ b/ethcore/src/json_tests/trie.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::path::Path; diff --git a/ethcore/src/lib.rs b/ethcore/src/lib.rs index 4987861e3..5aa1f3e98 100644 --- a/ethcore/src/lib.rs +++ b/ethcore/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #![warn(missing_docs, unused_extern_crates)] diff --git a/ethcore/src/miner/filter_options.rs b/ethcore/src/miner/filter_options.rs index 66f8b44a1..d29995c38 100644 --- a/ethcore/src/miner/filter_options.rs +++ b/ethcore/src/miner/filter_options.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use std::marker::PhantomData; diff --git a/ethcore/src/miner/miner.rs b/ethcore/src/miner/miner.rs index 77aac05ef..941ee6140 100644 --- a/ethcore/src/miner/miner.rs +++ b/ethcore/src/miner/miner.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp; use std::time::{Instant, Duration}; diff --git a/ethcore/src/miner/mod.rs b/ethcore/src/miner/mod.rs index 2033bd3dc..bf66627a5 100644 --- a/ethcore/src/miner/mod.rs +++ b/ethcore/src/miner/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #![warn(missing_docs)] diff --git a/ethcore/src/miner/pool_client.rs b/ethcore/src/miner/pool_client.rs index df086f576..8bebec3cc 100644 --- a/ethcore/src/miner/pool_client.rs +++ b/ethcore/src/miner/pool_client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain access for transaction pool. diff --git a/ethcore/src/miner/stratum.rs b/ethcore/src/miner/stratum.rs index bddb483c7..473d5c8a5 100644 --- a/ethcore/src/miner/stratum.rs +++ b/ethcore/src/miner/stratum.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Client-side stratum job dispatcher and mining notifier handler diff --git a/ethcore/src/test_helpers/evm_test_client.rs b/ethcore/src/test_helpers/evm_test_client.rs index 8ddbe9b8c..456180a9b 100644 --- a/ethcore/src/test_helpers/evm_test_client.rs +++ b/ethcore/src/test_helpers/evm_test_client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Simple Client used for EVM tests. diff --git a/ethcore/src/test_helpers/mod.rs b/ethcore/src/test_helpers/mod.rs index 886639dbe..6d27f99a4 100644 --- a/ethcore/src/test_helpers/mod.rs +++ b/ethcore/src/test_helpers/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Set of different helpers for client tests diff --git a/ethcore/src/test_helpers/test_client.rs b/ethcore/src/test_helpers/test_client.rs index 46cd854b3..a3b2d6381 100644 --- a/ethcore/src/test_helpers/test_client.rs +++ b/ethcore/src/test_helpers/test_client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Test client. diff --git a/ethcore/src/tests/blockchain.rs b/ethcore/src/tests/blockchain.rs index c58957505..37c08ef79 100644 --- a/ethcore/src/tests/blockchain.rs +++ b/ethcore/src/tests/blockchain.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use blockchain::BlockProvider; diff --git a/ethcore/src/tests/client.rs b/ethcore/src/tests/client.rs index 36aa72eec..841571c97 100644 --- a/ethcore/src/tests/client.rs +++ b/ethcore/src/tests/client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::str::{FromStr, from_utf8}; use std::sync::Arc; diff --git a/ethcore/src/tests/evm.rs b/ethcore/src/tests/evm.rs index f435502f8..14c5faa06 100644 --- a/ethcore/src/tests/evm.rs +++ b/ethcore/src/tests/evm.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tests of EVM integration with transaction execution. diff --git a/ethcore/src/tests/mod.rs b/ethcore/src/tests/mod.rs index 78ef151dc..4d5fe32a0 100644 --- a/ethcore/src/tests/mod.rs +++ b/ethcore/src/tests/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . mod client; mod blockchain; diff --git a/ethcore/src/tests/trace.rs b/ethcore/src/tests/trace.rs index ab5eadf0a..aa7c8f9aa 100644 --- a/ethcore/src/tests/trace.rs +++ b/ethcore/src/tests/trace.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Client tests of tracing diff --git a/ethcore/state-db/src/lib.rs b/ethcore/state-db/src/lib.rs index 0e50f1a49..60548da35 100644 --- a/ethcore/state-db/src/lib.rs +++ b/ethcore/state-db/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! State database abstraction. For more info, see the doc for `StateDB` diff --git a/ethcore/sync/src/api.rs b/ethcore/sync/src/api.rs index 433393b34..cd96c9eea 100644 --- a/ethcore/sync/src/api.rs +++ b/ethcore/sync/src/api.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::{Arc, mpsc, atomic}; use std::collections::{BTreeSet, HashMap, BTreeMap}; diff --git a/ethcore/sync/src/block_sync.rs b/ethcore/sync/src/block_sync.rs index 47d62ad3c..81f55aac8 100644 --- a/ethcore/sync/src/block_sync.rs +++ b/ethcore/sync/src/block_sync.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . /// /// Blockchain downloader diff --git a/ethcore/sync/src/blocks.rs b/ethcore/sync/src/blocks.rs index 9d0babc16..44c169755 100644 --- a/ethcore/sync/src/blocks.rs +++ b/ethcore/sync/src/blocks.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::{HashSet, HashMap, hash_map}; diff --git a/ethcore/sync/src/chain/fork_filter.rs b/ethcore/sync/src/chain/fork_filter.rs index 4a4c706df..144e98d82 100644 --- a/ethcore/sync/src/chain/fork_filter.rs +++ b/ethcore/sync/src/chain/fork_filter.rs @@ -1,18 +1,18 @@ -// Copyright 2015-2019 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// Copyright 2015-2020 Parity Technologies (UK) Ltd. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! This module contains a wrapper that connects this codebase with `ethereum-forkid` crate which provides `FORK_ID` //! to support Ethereum network protocol, version 64 and above. diff --git a/ethcore/sync/src/chain/handler.rs b/ethcore/sync/src/chain/handler.rs index 2067c2c9e..dcc8f56cb 100644 --- a/ethcore/sync/src/chain/handler.rs +++ b/ethcore/sync/src/chain/handler.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::time::Instant; use std::{mem, cmp}; diff --git a/ethcore/sync/src/chain/mod.rs b/ethcore/sync/src/chain/mod.rs index 998a56ccd..e9bb3cae4 100644 --- a/ethcore/sync/src/chain/mod.rs +++ b/ethcore/sync/src/chain/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! `BlockChain` synchronization strategy. //! Syncs to peers and keeps up to date. diff --git a/ethcore/sync/src/chain/propagator.rs b/ethcore/sync/src/chain/propagator.rs index 1f5667aca..943a21dfa 100644 --- a/ethcore/sync/src/chain/propagator.rs +++ b/ethcore/sync/src/chain/propagator.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp; use std::collections::HashSet; diff --git a/ethcore/sync/src/chain/requester.rs b/ethcore/sync/src/chain/requester.rs index 60a457866..9f95e6133 100644 --- a/ethcore/sync/src/chain/requester.rs +++ b/ethcore/sync/src/chain/requester.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::time::Instant; diff --git a/ethcore/sync/src/chain/supplier.rs b/ethcore/sync/src/chain/supplier.rs index 35278ffdd..dbfb0ff1e 100644 --- a/ethcore/sync/src/chain/supplier.rs +++ b/ethcore/sync/src/chain/supplier.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp; use std::time::{Duration, Instant}; diff --git a/ethcore/sync/src/chain/sync_packet.rs b/ethcore/sync/src/chain/sync_packet.rs index 5ebe859db..92d29f629 100644 --- a/ethcore/sync/src/chain/sync_packet.rs +++ b/ethcore/sync/src/chain/sync_packet.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! When sending packets over p2p we specify both which subprotocol //! to use and what kind of packet we are sending (through a packet id). diff --git a/ethcore/sync/src/lib.rs b/ethcore/sync/src/lib.rs index b29217bf6..fc2c2859e 100644 --- a/ethcore/sync/src/lib.rs +++ b/ethcore/sync/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #![warn(missing_docs, unused_extern_crates)] diff --git a/ethcore/sync/src/light_sync/mod.rs b/ethcore/sync/src/light_sync/mod.rs index 05ddebacd..04c16e49f 100644 --- a/ethcore/sync/src/light_sync/mod.rs +++ b/ethcore/sync/src/light_sync/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Light client synchronization. //! diff --git a/ethcore/sync/src/light_sync/response.rs b/ethcore/sync/src/light_sync/response.rs index 39354a632..665ac9e28 100644 --- a/ethcore/sync/src/light_sync/response.rs +++ b/ethcore/sync/src/light_sync/response.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Helpers for decoding and verifying responses for headers. diff --git a/ethcore/sync/src/light_sync/sync_round.rs b/ethcore/sync/src/light_sync/sync_round.rs index 2ec297333..d292c918f 100644 --- a/ethcore/sync/src/light_sync/sync_round.rs +++ b/ethcore/sync/src/light_sync/sync_round.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Header download state machine. diff --git a/ethcore/sync/src/light_sync/tests/mod.rs b/ethcore/sync/src/light_sync/tests/mod.rs index cb9a54f06..7e4e4dc7c 100644 --- a/ethcore/sync/src/light_sync/tests/mod.rs +++ b/ethcore/sync/src/light_sync/tests/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use crate::tests::helpers::TestNet; diff --git a/ethcore/sync/src/light_sync/tests/test_net.rs b/ethcore/sync/src/light_sync/tests/test_net.rs index 0f658b435..c894890dd 100644 --- a/ethcore/sync/src/light_sync/tests/test_net.rs +++ b/ethcore/sync/src/light_sync/tests/test_net.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! TestNet peer definition. diff --git a/ethcore/sync/src/private_tx.rs b/ethcore/sync/src/private_tx.rs index 13e1430a6..aed002d3f 100644 --- a/ethcore/sync/src/private_tx.rs +++ b/ethcore/sync/src/private_tx.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use parking_lot::Mutex; use ethereum_types::H256; diff --git a/ethcore/sync/src/snapshot_sync.rs b/ethcore/sync/src/snapshot_sync.rs index 3269bc0e0..881bfcd3c 100644 --- a/ethcore/sync/src/snapshot_sync.rs +++ b/ethcore/sync/src/snapshot_sync.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::HashSet; use std::iter::FromIterator; diff --git a/ethcore/sync/src/sync_io.rs b/ethcore/sync/src/sync_io.rs index f3fcfa1ee..2ef9ab581 100644 --- a/ethcore/sync/src/sync_io.rs +++ b/ethcore/sync/src/sync_io.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use std::collections::HashMap; diff --git a/ethcore/sync/src/tests/chain.rs b/ethcore/sync/src/tests/chain.rs index cd6a8b7c6..1f0739c10 100644 --- a/ethcore/sync/src/tests/chain.rs +++ b/ethcore/sync/src/tests/chain.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/ethcore/sync/src/tests/consensus.rs b/ethcore/sync/src/tests/consensus.rs index 258609ec1..94c2e18b4 100644 --- a/ethcore/sync/src/tests/consensus.rs +++ b/ethcore/sync/src/tests/consensus.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/ethcore/sync/src/tests/helpers.rs b/ethcore/sync/src/tests/helpers.rs index f6afa3e0a..eaadf2f3d 100644 --- a/ethcore/sync/src/tests/helpers.rs +++ b/ethcore/sync/src/tests/helpers.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::{VecDeque, HashSet, HashMap}; use std::sync::Arc; diff --git a/ethcore/sync/src/tests/mod.rs b/ethcore/sync/src/tests/mod.rs index aafaff5dc..feb9c1d41 100644 --- a/ethcore/sync/src/tests/mod.rs +++ b/ethcore/sync/src/tests/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . pub mod helpers; pub mod snapshot; diff --git a/ethcore/sync/src/tests/private.rs b/ethcore/sync/src/tests/private.rs index 8350a8a3d..f0f8ad08f 100644 --- a/ethcore/sync/src/tests/private.rs +++ b/ethcore/sync/src/tests/private.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/ethcore/sync/src/tests/rpc.rs b/ethcore/sync/src/tests/rpc.rs index 2122f303f..919f7f698 100644 --- a/ethcore/sync/src/tests/rpc.rs +++ b/ethcore/sync/src/tests/rpc.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use super::super::NetworkConfiguration; use network::NetworkConfiguration as BasicNetworkConfiguration; diff --git a/ethcore/sync/src/tests/snapshot.rs b/ethcore/sync/src/tests/snapshot.rs index aac6abe95..d0f44857c 100644 --- a/ethcore/sync/src/tests/snapshot.rs +++ b/ethcore/sync/src/tests/snapshot.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::HashMap; use std::sync::Arc; diff --git a/ethcore/sync/src/transactions_stats.rs b/ethcore/sync/src/transactions_stats.rs index 125d3c1b5..47b91cf7c 100644 --- a/ethcore/sync/src/transactions_stats.rs +++ b/ethcore/sync/src/transactions_stats.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::hash::BuildHasher; use std::collections::{HashSet, HashMap}; diff --git a/ethcore/trace/src/config.rs b/ethcore/trace/src/config.rs index 5073a88af..a449ecf67 100644 --- a/ethcore/trace/src/config.rs +++ b/ethcore/trace/src/config.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Traces config. diff --git a/ethcore/trace/src/db.rs b/ethcore/trace/src/db.rs index ac887ebbe..008553e2e 100644 --- a/ethcore/trace/src/db.rs +++ b/ethcore/trace/src/db.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Trace database. use std::collections::HashMap; diff --git a/ethcore/trace/src/executive_tracer.rs b/ethcore/trace/src/executive_tracer.rs index 04aef1eae..68ccaac4a 100644 --- a/ethcore/trace/src/executive_tracer.rs +++ b/ethcore/trace/src/executive_tracer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Simple executive tracer. diff --git a/ethcore/trace/src/import.rs b/ethcore/trace/src/import.rs index 389073540..6d37b9988 100644 --- a/ethcore/trace/src/import.rs +++ b/ethcore/trace/src/import.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Traces import request. use ethereum_types::H256; diff --git a/ethcore/trace/src/lib.rs b/ethcore/trace/src/lib.rs index dfeab3561..963452b5d 100644 --- a/ethcore/trace/src/lib.rs +++ b/ethcore/trace/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tracing diff --git a/ethcore/trace/src/noop_tracer.rs b/ethcore/trace/src/noop_tracer.rs index 74d3e5750..b9f0d2cfc 100644 --- a/ethcore/trace/src/noop_tracer.rs +++ b/ethcore/trace/src/noop_tracer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Nonoperative tracer. diff --git a/ethcore/trace/src/types/error.rs b/ethcore/trace/src/types/error.rs index 1a59e9dea..ceccf9e76 100644 --- a/ethcore/trace/src/types/error.rs +++ b/ethcore/trace/src/types/error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Trace errors. diff --git a/ethcore/trace/src/types/filter.rs b/ethcore/trace/src/types/filter.rs index b25e1de02..eb27d9938 100644 --- a/ethcore/trace/src/types/filter.rs +++ b/ethcore/trace/src/types/filter.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Trace filters type definitions diff --git a/ethcore/trace/src/types/flat.rs b/ethcore/trace/src/types/flat.rs index 2fad0c27f..20f292657 100644 --- a/ethcore/trace/src/types/flat.rs +++ b/ethcore/trace/src/types/flat.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Flat trace module diff --git a/ethcore/trace/src/types/localized.rs b/ethcore/trace/src/types/localized.rs index 81217c722..8ff0546d4 100644 --- a/ethcore/trace/src/types/localized.rs +++ b/ethcore/trace/src/types/localized.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Localized traces type definitions diff --git a/ethcore/trace/src/types/mod.rs b/ethcore/trace/src/types/mod.rs index 0c697f1a1..995b8b12d 100644 --- a/ethcore/trace/src/types/mod.rs +++ b/ethcore/trace/src/types/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Types used in the public api diff --git a/ethcore/trace/src/types/trace.rs b/ethcore/trace/src/types/trace.rs index 72bac5858..f75a0d84f 100644 --- a/ethcore/trace/src/types/trace.rs +++ b/ethcore/trace/src/types/trace.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tracing data types. diff --git a/ethcore/trie-vm-factories/src/lib.rs b/ethcore/trie-vm-factories/src/lib.rs index 7d8c590af..ca0810f6f 100644 --- a/ethcore/trie-vm-factories/src/lib.rs +++ b/ethcore/trie-vm-factories/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use trie_db::TrieFactory; use ethtrie::Layout; diff --git a/ethcore/types/src/account_diff.rs b/ethcore/types/src/account_diff.rs index c09e8dbfb..919dc7bd4 100644 --- a/ethcore/types/src/account_diff.rs +++ b/ethcore/types/src/account_diff.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Diff between two accounts. diff --git a/ethcore/types/src/ancestry_action.rs b/ethcore/types/src/ancestry_action.rs index cc55d46ee..9d3683610 100644 --- a/ethcore/types/src/ancestry_action.rs +++ b/ethcore/types/src/ancestry_action.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Actions on ancestry blocks when working on a new block. diff --git a/ethcore/types/src/basic_account.rs b/ethcore/types/src/basic_account.rs index 9941c1351..45711ce0b 100644 --- a/ethcore/types/src/basic_account.rs +++ b/ethcore/types/src/basic_account.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Basic account type -- the decoded RLP from the state trie. diff --git a/ethcore/types/src/block.rs b/ethcore/types/src/block.rs index 9eba9baef..f6a8ab688 100644 --- a/ethcore/types/src/block.rs +++ b/ethcore/types/src/block.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Base data structure of this module is `Block`. //! diff --git a/ethcore/types/src/block_status.rs b/ethcore/types/src/block_status.rs index ac955067b..a8ff1305d 100644 --- a/ethcore/types/src/block_status.rs +++ b/ethcore/types/src/block_status.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! General block status diff --git a/ethcore/types/src/blockchain_info.rs b/ethcore/types/src/blockchain_info.rs index 48d0e03cf..c8d2dc4e9 100644 --- a/ethcore/types/src/blockchain_info.rs +++ b/ethcore/types/src/blockchain_info.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockhain info type definition diff --git a/ethcore/types/src/call_analytics.rs b/ethcore/types/src/call_analytics.rs index ba67f6f62..9e5e6181f 100644 --- a/ethcore/types/src/call_analytics.rs +++ b/ethcore/types/src/call_analytics.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Call analytics related types diff --git a/ethcore/types/src/chain_notify.rs b/ethcore/types/src/chain_notify.rs index 91dc91f2f..bf97649a4 100644 --- a/ethcore/types/src/chain_notify.rs +++ b/ethcore/types/src/chain_notify.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Types pertaining to sending messages and finding routes through the chain. Used mostly by the //! ChainNotify trait. diff --git a/ethcore/types/src/client_types.rs b/ethcore/types/src/client_types.rs index 1e612a492..0d5f68dc8 100644 --- a/ethcore/types/src/client_types.rs +++ b/ethcore/types/src/client_types.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Client related types. diff --git a/ethcore/types/src/data_format.rs b/ethcore/types/src/data_format.rs index 78fd383bc..99ae18724 100644 --- a/ethcore/types/src/data_format.rs +++ b/ethcore/types/src/data_format.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Data format for importing/exporting blocks from disk use std::str::FromStr; diff --git a/ethcore/types/src/encoded.rs b/ethcore/types/src/encoded.rs index a7c7b5c0c..67537a19e 100644 --- a/ethcore/types/src/encoded.rs +++ b/ethcore/types/src/encoded.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Lazily-decoded owning views of RLP-encoded blockchain objects. //! These views are meant to contain _trusted_ data -- without encoding diff --git a/ethcore/types/src/engines/epoch.rs b/ethcore/types/src/engines/epoch.rs index 905f2e47d..55ecc825f 100644 --- a/ethcore/types/src/engines/epoch.rs +++ b/ethcore/types/src/engines/epoch.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Epoch verifiers and transitions. diff --git a/ethcore/types/src/engines/machine.rs b/ethcore/types/src/engines/machine.rs index 2927e5221..9cf132892 100644 --- a/ethcore/types/src/engines/machine.rs +++ b/ethcore/types/src/engines/machine.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! State machine types diff --git a/ethcore/types/src/engines/mod.rs b/ethcore/types/src/engines/mod.rs index c1ce98078..d6484d14e 100644 --- a/ethcore/types/src/engines/mod.rs +++ b/ethcore/types/src/engines/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Engine-specific types. diff --git a/ethcore/types/src/engines/params.rs b/ethcore/types/src/engines/params.rs index f936bfb6a..beb8e2113 100644 --- a/ethcore/types/src/engines/params.rs +++ b/ethcore/types/src/engines/params.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Engine-specific parameter types. diff --git a/ethcore/types/src/errors/block_error.rs b/ethcore/types/src/errors/block_error.rs index c72588d6e..b5aa52d41 100644 --- a/ethcore/types/src/errors/block_error.rs +++ b/ethcore/types/src/errors/block_error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . use std::{ fmt, diff --git a/ethcore/types/src/errors/engine_error.rs b/ethcore/types/src/errors/engine_error.rs index 8e412891f..1d0a1b9cc 100644 --- a/ethcore/types/src/errors/engine_error.rs +++ b/ethcore/types/src/errors/engine_error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; diff --git a/ethcore/types/src/errors/ethcore_error.rs b/ethcore/types/src/errors/ethcore_error.rs index 1a99c65dc..f040d01de 100644 --- a/ethcore/types/src/errors/ethcore_error.rs +++ b/ethcore/types/src/errors/ethcore_error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! General error types for use in ethcore. diff --git a/ethcore/types/src/errors/mod.rs b/ethcore/types/src/errors/mod.rs index f0f8fa77f..821af0f73 100644 --- a/ethcore/types/src/errors/mod.rs +++ b/ethcore/types/src/errors/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! General error types for use in parity-ethereum. diff --git a/ethcore/types/src/errors/snapshot_error.rs b/ethcore/types/src/errors/snapshot_error.rs index e90e60e48..626367c13 100644 --- a/ethcore/types/src/errors/snapshot_error.rs +++ b/ethcore/types/src/errors/snapshot_error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Snapshot-related errors. diff --git a/ethcore/types/src/filter.rs b/ethcore/types/src/filter.rs index 2d588e2ab..46c3802cf 100644 --- a/ethcore/types/src/filter.rs +++ b/ethcore/types/src/filter.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain filter diff --git a/ethcore/types/src/header.rs b/ethcore/types/src/header.rs index a36dca435..e4c6cecf4 100644 --- a/ethcore/types/src/header.rs +++ b/ethcore/types/src/header.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Block header. diff --git a/ethcore/types/src/ids.rs b/ethcore/types/src/ids.rs index 7579a2166..f8def0f77 100644 --- a/ethcore/types/src/ids.rs +++ b/ethcore/types/src/ids.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Unique identifiers. diff --git a/ethcore/types/src/import_route.rs b/ethcore/types/src/import_route.rs index 9df6b28a7..82561f4a4 100644 --- a/ethcore/types/src/import_route.rs +++ b/ethcore/types/src/import_route.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Calculate import route for newly inserted blocks. diff --git a/ethcore/types/src/io_message.rs b/ethcore/types/src/io_message.rs index bac6695f5..a86901c9e 100644 --- a/ethcore/types/src/io_message.rs +++ b/ethcore/types/src/io_message.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Defines the `ClientIoMessage` type, used pervasively throughout various parts of the project to //! communicate between each other. diff --git a/ethcore/types/src/lib.rs b/ethcore/types/src/lib.rs index 5b664e9dc..7f25fdb38 100644 --- a/ethcore/types/src/lib.rs +++ b/ethcore/types/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Types used in the public API //! diff --git a/ethcore/types/src/log_entry.rs b/ethcore/types/src/log_entry.rs index 155ac5da0..63bc558a4 100644 --- a/ethcore/types/src/log_entry.rs +++ b/ethcore/types/src/log_entry.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Log entry type definition. diff --git a/ethcore/types/src/pruning_info.rs b/ethcore/types/src/pruning_info.rs index c358fea7b..ce366cc7f 100644 --- a/ethcore/types/src/pruning_info.rs +++ b/ethcore/types/src/pruning_info.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Information about portions of the state and chain which the client may serve. //! diff --git a/ethcore/types/src/receipt.rs b/ethcore/types/src/receipt.rs index b630c048a..8a30c0a6c 100644 --- a/ethcore/types/src/receipt.rs +++ b/ethcore/types/src/receipt.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Receipt diff --git a/ethcore/types/src/security_level.rs b/ethcore/types/src/security_level.rs index 9d7a61440..5b880c916 100644 --- a/ethcore/types/src/security_level.rs +++ b/ethcore/types/src/security_level.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Indication of how secure the chain is. diff --git a/ethcore/types/src/snapshot.rs b/ethcore/types/src/snapshot.rs index e08ba70d4..1ecfe7e11 100644 --- a/ethcore/types/src/snapshot.rs +++ b/ethcore/types/src/snapshot.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Snapshot type definitions diff --git a/ethcore/types/src/state_diff.rs b/ethcore/types/src/state_diff.rs index 0996c79d8..6fafe9ae4 100644 --- a/ethcore/types/src/state_diff.rs +++ b/ethcore/types/src/state_diff.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! State diff module. diff --git a/ethcore/types/src/trace_filter.rs b/ethcore/types/src/trace_filter.rs index 630cd31de..eb8775b8f 100644 --- a/ethcore/types/src/trace_filter.rs +++ b/ethcore/types/src/trace_filter.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Trace filter related types diff --git a/ethcore/types/src/transaction/error.rs b/ethcore/types/src/transaction/error.rs index 8907da80e..3371e0477 100644 --- a/ethcore/types/src/transaction/error.rs +++ b/ethcore/types/src/transaction/error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{fmt, error}; @@ -176,4 +176,3 @@ impl fmt::Display for CallError { f.write_fmt(format_args!("Transaction execution error ({}).", msg)) } } - diff --git a/ethcore/types/src/transaction/mod.rs b/ethcore/types/src/transaction/mod.rs index 04de86461..302cad0f4 100644 --- a/ethcore/types/src/transaction/mod.rs +++ b/ethcore/types/src/transaction/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethereum Transactions diff --git a/ethcore/types/src/transaction/transaction.rs b/ethcore/types/src/transaction/transaction.rs index 4e6de5754..1b13ab210 100644 --- a/ethcore/types/src/transaction/transaction.rs +++ b/ethcore/types/src/transaction/transaction.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction data structure. diff --git a/ethcore/types/src/tree_route.rs b/ethcore/types/src/tree_route.rs index db9e9d9a4..a76f621e7 100644 --- a/ethcore/types/src/tree_route.rs +++ b/ethcore/types/src/tree_route.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tree route info type definition diff --git a/ethcore/types/src/verification.rs b/ethcore/types/src/verification.rs index 8beb2d078..39cc4e9a6 100644 --- a/ethcore/types/src/verification.rs +++ b/ethcore/types/src/verification.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Verification types @@ -89,4 +89,3 @@ impl Unverified { }) } } - diff --git a/ethcore/types/src/views/block.rs b/ethcore/types/src/views/block.rs index 5666a1031..9cfda9e13 100644 --- a/ethcore/types/src/views/block.rs +++ b/ethcore/types/src/views/block.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! View onto block rlp. diff --git a/ethcore/types/src/views/body.rs b/ethcore/types/src/views/body.rs index dbc6e8801..fcb5fa7b5 100644 --- a/ethcore/types/src/views/body.rs +++ b/ethcore/types/src/views/body.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! View onto block body rlp. diff --git a/ethcore/types/src/views/header.rs b/ethcore/types/src/views/header.rs index 0e52dd8b1..f550f2d71 100644 --- a/ethcore/types/src/views/header.rs +++ b/ethcore/types/src/views/header.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! View onto block header rlp diff --git a/ethcore/types/src/views/mod.rs b/ethcore/types/src/views/mod.rs index ff3a9be3d..945d5a71d 100644 --- a/ethcore/types/src/views/mod.rs +++ b/ethcore/types/src/views/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Block oriented views onto rlp. diff --git a/ethcore/types/src/views/transaction.rs b/ethcore/types/src/views/transaction.rs index 67fcd31f1..c5757d4bb 100644 --- a/ethcore/types/src/views/transaction.rs +++ b/ethcore/types/src/views/transaction.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! View onto transaction rlp use bytes::Bytes; diff --git a/ethcore/types/src/views/view_rlp.rs b/ethcore/types/src/views/view_rlp.rs index e209db35f..668c5c971 100644 --- a/ethcore/types/src/views/view_rlp.rs +++ b/ethcore/types/src/views/view_rlp.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Wrapper for view rlp expected to be valid with debug info diff --git a/ethcore/verification/benches/verification.rs b/ethcore/verification/benches/verification.rs index 81477cc48..4e0d3abe8 100644 --- a/ethcore/verification/benches/verification.rs +++ b/ethcore/verification/benches/verification.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! benchmarking for verification diff --git a/ethcore/verification/src/lib.rs b/ethcore/verification/src/lib.rs index 73a940f34..91a9a31c2 100644 --- a/ethcore/verification/src/lib.rs +++ b/ethcore/verification/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Block verification utilities. diff --git a/ethcore/verification/src/queue/kind.rs b/ethcore/verification/src/queue/kind.rs index 546df2d5a..19a82a717 100644 --- a/ethcore/verification/src/queue/kind.rs +++ b/ethcore/verification/src/queue/kind.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Definition of valid items for the verification queue. diff --git a/ethcore/verification/src/queue/mod.rs b/ethcore/verification/src/queue/mod.rs index 31d205c79..341682172 100644 --- a/ethcore/verification/src/queue/mod.rs +++ b/ethcore/verification/src/queue/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A queue of blocks. Sits between network or other I/O and the `BlockChain`. //! Sorts them ready for blockchain insertion. diff --git a/ethcore/verification/src/test_helpers.rs b/ethcore/verification/src/test_helpers.rs index e514d63c4..70e0055fe 100644 --- a/ethcore/verification/src/test_helpers.rs +++ b/ethcore/verification/src/test_helpers.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Verification test helpers. diff --git a/ethcore/verification/src/verification.rs b/ethcore/verification/src/verification.rs index b67cc127b..bc3844b24 100644 --- a/ethcore/verification/src/verification.rs +++ b/ethcore/verification/src/verification.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Block and transaction verification functions //! diff --git a/ethcore/vm/src/action_params.rs b/ethcore/vm/src/action_params.rs index da06fb3f3..d440a5024 100644 --- a/ethcore/vm/src/action_params.rs +++ b/ethcore/vm/src/action_params.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Evm input params. use ethereum_types::{U256, H256, Address}; diff --git a/ethcore/vm/src/action_type.rs b/ethcore/vm/src/action_type.rs index 2696ba598..4b4cb72c8 100644 --- a/ethcore/vm/src/action_type.rs +++ b/ethcore/vm/src/action_type.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! EVM action types. diff --git a/ethcore/vm/src/env_info.rs b/ethcore/vm/src/env_info.rs index f0a0d531b..5361c99ef 100644 --- a/ethcore/vm/src/env_info.rs +++ b/ethcore/vm/src/env_info.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Environment information for transaction execution. diff --git a/ethcore/vm/src/error.rs b/ethcore/vm/src/error.rs index b475b9f79..5e8c1f59c 100644 --- a/ethcore/vm/src/error.rs +++ b/ethcore/vm/src/error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! VM errors module diff --git a/ethcore/vm/src/ext.rs b/ethcore/vm/src/ext.rs index 656831cdc..0e3a80e0b 100644 --- a/ethcore/vm/src/ext.rs +++ b/ethcore/vm/src/ext.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Interface for Evm externalities. diff --git a/ethcore/vm/src/lib.rs b/ethcore/vm/src/lib.rs index 6c5ed98fd..af70b5d17 100644 --- a/ethcore/vm/src/lib.rs +++ b/ethcore/vm/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Virtual machines support library diff --git a/ethcore/vm/src/return_data.rs b/ethcore/vm/src/return_data.rs index 35420fbc9..43e2732b2 100644 --- a/ethcore/vm/src/return_data.rs +++ b/ethcore/vm/src/return_data.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Return data structures diff --git a/ethcore/vm/src/schedule.rs b/ethcore/vm/src/schedule.rs index a11e3ed32..db8dacab5 100644 --- a/ethcore/vm/src/schedule.rs +++ b/ethcore/vm/src/schedule.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Cost schedule and other parameterisations for the EVM. use std::collections::HashMap; diff --git a/ethcore/vm/src/tests.rs b/ethcore/vm/src/tests.rs index bdca9bbf3..575567f8d 100644 --- a/ethcore/vm/src/tests.rs +++ b/ethcore/vm/src/tests.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use std::collections::{HashMap, HashSet}; diff --git a/ethcore/wasm/run/src/fixture.rs b/ethcore/wasm/run/src/fixture.rs index 13f993681..e6ddb3cf5 100644 --- a/ethcore/wasm/run/src/fixture.rs +++ b/ethcore/wasm/run/src/fixture.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::borrow::Cow; use ethjson::uint::Uint; diff --git a/ethcore/wasm/run/src/main.rs b/ethcore/wasm/run/src/main.rs index 1fd52df3c..a8a48bcca 100644 --- a/ethcore/wasm/run/src/main.rs +++ b/ethcore/wasm/run/src/main.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate serde; extern crate serde_json; diff --git a/ethcore/wasm/run/src/runner.rs b/ethcore/wasm/run/src/runner.rs index 07b7254b7..68221e702 100644 --- a/ethcore/wasm/run/src/runner.rs +++ b/ethcore/wasm/run/src/runner.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use fixture::{Fixture, Assert, CallLocator, Source}; use wasm::WasmInterpreter; diff --git a/ethcore/wasm/src/env.rs b/ethcore/wasm/src/env.rs index 5211e7923..a39be879f 100644 --- a/ethcore/wasm/src/env.rs +++ b/ethcore/wasm/src/env.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Env module glue for wasmi interpreter diff --git a/ethcore/wasm/src/lib.rs b/ethcore/wasm/src/lib.rs index 8d3aa79e8..61df3a42c 100644 --- a/ethcore/wasm/src/lib.rs +++ b/ethcore/wasm/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Wasm Interpreter diff --git a/ethcore/wasm/src/panic_payload.rs b/ethcore/wasm/src/panic_payload.rs index 695c19847..5a65e0215 100644 --- a/ethcore/wasm/src/panic_payload.rs +++ b/ethcore/wasm/src/panic_payload.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use byteorder::{LittleEndian, ReadBytesExt}; use std::io::{self, Read}; diff --git a/ethcore/wasm/src/parser.rs b/ethcore/wasm/src/parser.rs index 76410a5e5..7dcbd271e 100644 --- a/ethcore/wasm/src/parser.rs +++ b/ethcore/wasm/src/parser.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! ActionParams parser for wasm diff --git a/ethcore/wasm/src/runtime.rs b/ethcore/wasm/src/runtime.rs index 3350e15bd..c16075f92 100644 --- a/ethcore/wasm/src/runtime.rs +++ b/ethcore/wasm/src/runtime.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp; use ethereum_types::{BigEndianHash, U256, H256, Address}; diff --git a/ethcore/wasm/src/tests.rs b/ethcore/wasm/src/tests.rs index 544e7b6a1..03d066e1b 100644 --- a/ethcore/wasm/src/tests.rs +++ b/ethcore/wasm/src/tests.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use std::collections::HashMap; diff --git a/evmbin/benches/mod.rs b/evmbin/benches/mod.rs index 743df1e82..ac58ddf70 100644 --- a/evmbin/benches/mod.rs +++ b/evmbin/benches/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! benchmarking for EVM //! should be started with: diff --git a/evmbin/src/display/json.rs b/evmbin/src/display/json.rs index 239874d2c..1a7ce7c2c 100644 --- a/evmbin/src/display/json.rs +++ b/evmbin/src/display/json.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Log EVM instruction output data traces from a JSON formatting informant. diff --git a/evmbin/src/display/mod.rs b/evmbin/src/display/mod.rs index 846c94ef2..5137718e0 100644 --- a/evmbin/src/display/mod.rs +++ b/evmbin/src/display/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! EVM output display utils. diff --git a/evmbin/src/display/simple.rs b/evmbin/src/display/simple.rs index 2e3863e2d..ce798cb4f 100644 --- a/evmbin/src/display/simple.rs +++ b/evmbin/src/display/simple.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Log EVM instruction output data traces from a simple formatting informant. diff --git a/evmbin/src/display/std_json.rs b/evmbin/src/display/std_json.rs index 96ccb8387..843e69b01 100644 --- a/evmbin/src/display/std_json.rs +++ b/evmbin/src/display/std_json.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Log EVM instruction output data traces from a standardized JSON formatting informant. diff --git a/evmbin/src/info.rs b/evmbin/src/info.rs index 1509c8cef..c1b655422 100644 --- a/evmbin/src/info.rs +++ b/evmbin/src/info.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! EVM runner. diff --git a/evmbin/src/main.rs b/evmbin/src/main.rs index 4e6f637d4..cbf8af694 100644 --- a/evmbin/src/main.rs +++ b/evmbin/src/main.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity EVM Interpreter Binary. //! diff --git a/json/src/bytes.rs b/json/src/bytes.rs index 699b9e2cf..3b65208c5 100644 --- a/json/src/bytes.rs +++ b/json/src/bytes.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Lenient bytes json deserialization for test json files. diff --git a/json/src/hash.rs b/json/src/hash.rs index 513917242..d6c2c7263 100644 --- a/json/src/hash.rs +++ b/json/src/hash.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Lenient hash json deserialization for test json files. diff --git a/json/src/lib.rs b/json/src/lib.rs index e66ce0dc9..3468c3ea7 100644 --- a/json/src/lib.rs +++ b/json/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! JSON deserialization library diff --git a/json/src/maybe.rs b/json/src/maybe.rs index f23223647..5352a7a02 100644 --- a/json/src/maybe.rs +++ b/json/src/maybe.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Deserializer of empty string values into optionals. diff --git a/json/src/spec/account.rs b/json/src/spec/account.rs index 466aa9923..2ad480195 100644 --- a/json/src/spec/account.rs +++ b/json/src/spec/account.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Spec account deserialization. diff --git a/json/src/spec/authority_round.rs b/json/src/spec/authority_round.rs index 57e5fe5fa..b169e83e4 100644 --- a/json/src/spec/authority_round.rs +++ b/json/src/spec/authority_round.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Authority Round parameter deserialization. //! diff --git a/json/src/spec/basic_authority.rs b/json/src/spec/basic_authority.rs index 45c000442..53b129e89 100644 --- a/json/src/spec/basic_authority.rs +++ b/json/src/spec/basic_authority.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Authority params deserialization. diff --git a/json/src/spec/builtin.rs b/json/src/spec/builtin.rs index 4b95258dd..173975faf 100644 --- a/json/src/spec/builtin.rs +++ b/json/src/spec/builtin.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Spec builtin deserialization. diff --git a/json/src/spec/clique.rs b/json/src/spec/clique.rs index ca6c0893d..6657e9ade 100644 --- a/json/src/spec/clique.rs +++ b/json/src/spec/clique.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Clique params deserialization. diff --git a/json/src/spec/engine.rs b/json/src/spec/engine.rs index 7577eadbd..8390f8405 100644 --- a/json/src/spec/engine.rs +++ b/json/src/spec/engine.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Engine deserialization. diff --git a/json/src/spec/ethash.rs b/json/src/spec/ethash.rs index 0addd933f..1c1dc870f 100644 --- a/json/src/spec/ethash.rs +++ b/json/src/spec/ethash.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethash params deserialization. diff --git a/json/src/spec/genesis.rs b/json/src/spec/genesis.rs index 00e1cddeb..e40203fba 100644 --- a/json/src/spec/genesis.rs +++ b/json/src/spec/genesis.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Spec genesis deserialization. diff --git a/json/src/spec/hardcoded_sync.rs b/json/src/spec/hardcoded_sync.rs index e5393de7b..f151303d5 100644 --- a/json/src/spec/hardcoded_sync.rs +++ b/json/src/spec/hardcoded_sync.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Spec hardcoded synchronization deserialization for the light client. diff --git a/json/src/spec/instant_seal.rs b/json/src/spec/instant_seal.rs index dbd5cd435..2f8e4ad4a 100644 --- a/json/src/spec/instant_seal.rs +++ b/json/src/spec/instant_seal.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Instant seal engine params deserialization. diff --git a/json/src/spec/mod.rs b/json/src/spec/mod.rs index f220bbd73..56e4352d2 100644 --- a/json/src/spec/mod.rs +++ b/json/src/spec/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Spec deserialization. diff --git a/json/src/spec/null_engine.rs b/json/src/spec/null_engine.rs index 14c6fa222..eb1833c24 100644 --- a/json/src/spec/null_engine.rs +++ b/json/src/spec/null_engine.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Null engine params deserialization. diff --git a/json/src/spec/params.rs b/json/src/spec/params.rs index e1d8e5c02..a7b5f8230 100644 --- a/json/src/spec/params.rs +++ b/json/src/spec/params.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Spec params deserialization. diff --git a/json/src/spec/seal.rs b/json/src/spec/seal.rs index 8d03f6e0e..a85402fb5 100644 --- a/json/src/spec/seal.rs +++ b/json/src/spec/seal.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Spec seal deserialization. diff --git a/json/src/spec/spec.rs b/json/src/spec/spec.rs index 464a53b31..50d2c6b2e 100644 --- a/json/src/spec/spec.rs +++ b/json/src/spec/spec.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Spec deserialization. diff --git a/json/src/spec/state.rs b/json/src/spec/state.rs index 3b0095e27..6592ae191 100644 --- a/json/src/spec/state.rs +++ b/json/src/spec/state.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain state deserializer. diff --git a/json/src/spec/step_duration.rs b/json/src/spec/step_duration.rs index ec16c4b7c..68fed3960 100644 --- a/json/src/spec/step_duration.rs +++ b/json/src/spec/step_duration.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . //! Step duration configuration parameter diff --git a/json/src/spec/validator_set.rs b/json/src/spec/validator_set.rs index d9aee4476..3df93ef3b 100644 --- a/json/src/spec/validator_set.rs +++ b/json/src/spec/validator_set.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Validator set deserialization. diff --git a/json/src/state.rs b/json/src/state.rs index 91b3d5ff6..0f6f515af 100644 --- a/json/src/state.rs +++ b/json/src/state.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! State deserialization types diff --git a/json/src/test_helpers/blockchain/block.rs b/json/src/test_helpers/blockchain/block.rs index 0fab3a2b2..0e4389038 100644 --- a/json/src/test_helpers/blockchain/block.rs +++ b/json/src/test_helpers/blockchain/block.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain test block deserializer. diff --git a/json/src/test_helpers/blockchain/header.rs b/json/src/test_helpers/blockchain/header.rs index 8818a4b90..8207400dc 100644 --- a/json/src/test_helpers/blockchain/header.rs +++ b/json/src/test_helpers/blockchain/header.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain test header deserializer. diff --git a/json/src/test_helpers/blockchain/mod.rs b/json/src/test_helpers/blockchain/mod.rs index 49a6352b7..df7d84d54 100644 --- a/json/src/test_helpers/blockchain/mod.rs +++ b/json/src/test_helpers/blockchain/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blockchain test deserialization. diff --git a/json/src/test_helpers/difficulty.rs b/json/src/test_helpers/difficulty.rs index 023966c6a..aa5402d18 100644 --- a/json/src/test_helpers/difficulty.rs +++ b/json/src/test_helpers/difficulty.rs @@ -1,3 +1,19 @@ +// Copyright 2015-2020 Parity Technologies (UK) Ltd. +// This file is part of Open Ethereum. + +// Open Ethereum 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. + +// Open Ethereum 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 Open Ethereum. If not, see . + use crate::{hash::H256, uint::Uint}; use serde::Deserialize; diff --git a/json/src/test_helpers/mod.rs b/json/src/test_helpers/mod.rs index dfe30328a..70a3b1e93 100644 --- a/json/src/test_helpers/mod.rs +++ b/json/src/test_helpers/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Test structures for JSON deserialization. diff --git a/json/src/test_helpers/skip.rs b/json/src/test_helpers/skip.rs index 91067dd36..120f3b679 100644 --- a/json/src/test_helpers/skip.rs +++ b/json/src/test_helpers/skip.rs @@ -1,3 +1,19 @@ +// Copyright 2015-2020 Parity Technologies (UK) Ltd. +// This file is part of Open Ethereum. + +// Open Ethereum 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. + +// Open Ethereum 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 Open Ethereum. If not, see . + use std::collections::BTreeMap; use serde::Deserialize; diff --git a/json/src/test_helpers/state.rs b/json/src/test_helpers/state.rs index aca26b806..170366e8b 100644 --- a/json/src/test_helpers/state.rs +++ b/json/src/test_helpers/state.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! State test deserialization. diff --git a/json/src/test_helpers/tester.rs b/json/src/test_helpers/tester.rs index 610f59723..98fb2ee5b 100644 --- a/json/src/test_helpers/tester.rs +++ b/json/src/test_helpers/tester.rs @@ -1,3 +1,19 @@ +// Copyright 2015-2020 Parity Technologies (UK) Ltd. +// This file is part of Open Ethereum. + +// Open Ethereum 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. + +// Open Ethereum 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 Open Ethereum. If not, see . + use std::collections::BTreeMap; use serde::Deserialize; use serde::de::DeserializeOwned; diff --git a/json/src/test_helpers/transaction.rs b/json/src/test_helpers/transaction.rs index 7c5c621f3..fb32cb0c2 100644 --- a/json/src/test_helpers/transaction.rs +++ b/json/src/test_helpers/transaction.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction test deserialization. diff --git a/json/src/test_helpers/trie/input.rs b/json/src/test_helpers/trie/input.rs index d32fc80e6..6266e2673 100644 --- a/json/src/test_helpers/trie/input.rs +++ b/json/src/test_helpers/trie/input.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Trie test input deserialization. diff --git a/json/src/test_helpers/trie/mod.rs b/json/src/test_helpers/trie/mod.rs index 250e08b2f..84e26e59d 100644 --- a/json/src/test_helpers/trie/mod.rs +++ b/json/src/test_helpers/trie/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Trie test deserialization. diff --git a/json/src/transaction.rs b/json/src/transaction.rs index 1a4f16276..8f54261d3 100644 --- a/json/src/transaction.rs +++ b/json/src/transaction.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction deserialization. diff --git a/json/src/uint.rs b/json/src/uint.rs index ed9b56837..2424684af 100644 --- a/json/src/uint.rs +++ b/json/src/uint.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Lenient uint json deserialization for test json files. diff --git a/json/src/vm.rs b/json/src/vm.rs index 048fe58f6..0ba8c97a8 100644 --- a/json/src/vm.rs +++ b/json/src/vm.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Vm json deserialization diff --git a/license_header b/license_header index 0c290dd8f..ef83c7c5a 100644 --- a/license_header +++ b/license_header @@ -1,16 +1,16 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . diff --git a/miner/local-store/src/lib.rs b/miner/local-store/src/lib.rs index ec2c757f5..f499e3487 100644 --- a/miner/local-store/src/lib.rs +++ b/miner/local-store/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Manages local node data: pending local transactions, sync security level diff --git a/miner/price-info/src/lib.rs b/miner/price-info/src/lib.rs index e590b61a5..3c193dfa0 100644 --- a/miner/price-info/src/lib.rs +++ b/miner/price-info/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #![warn(missing_docs)] diff --git a/miner/src/external.rs b/miner/src/external.rs index 6e38868e1..42e75a2da 100644 --- a/miner/src/external.rs +++ b/miner/src/external.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! External Miner hashrate tracker. diff --git a/miner/src/gas_price_calibrator.rs b/miner/src/gas_price_calibrator.rs index c176d996a..8f76949aa 100644 --- a/miner/src/gas_price_calibrator.rs +++ b/miner/src/gas_price_calibrator.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Auto-updates minimal gas price requirement from a price-info source. diff --git a/miner/src/gas_pricer.rs b/miner/src/gas_pricer.rs index 1e48cb692..87d7c2adb 100644 --- a/miner/src/gas_pricer.rs +++ b/miner/src/gas_pricer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Auto-updates minimal gas price requirement. diff --git a/miner/src/lib.rs b/miner/src/lib.rs index 9ac9f9ad7..2f0e45c88 100644 --- a/miner/src/lib.rs +++ b/miner/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #![warn(missing_docs)] diff --git a/miner/src/local_accounts.rs b/miner/src/local_accounts.rs index f2725476b..4b65ef27c 100644 --- a/miner/src/local_accounts.rs +++ b/miner/src/local_accounts.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Local Accounts checker @@ -40,4 +40,3 @@ impl LocalAccounts for (A, B) where self.0.is_local(address) || self.1.is_local(address) } } - diff --git a/miner/src/pool/client.rs b/miner/src/pool/client.rs index d374914a0..e9fd1f048 100644 --- a/miner/src/pool/client.rs +++ b/miner/src/pool/client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction Pool state client. //! diff --git a/miner/src/pool/listener.rs b/miner/src/pool/listener.rs index 4a7e23ec5..ba6a41ade 100644 --- a/miner/src/pool/listener.rs +++ b/miner/src/pool/listener.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Notifier for new transaction hashes. diff --git a/miner/src/pool/local_transactions.rs b/miner/src/pool/local_transactions.rs index b90517864..79f8605cc 100644 --- a/miner/src/pool/local_transactions.rs +++ b/miner/src/pool/local_transactions.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Local Transactions List. diff --git a/miner/src/pool/mod.rs b/miner/src/pool/mod.rs index 6c3f85e51..528361be3 100644 --- a/miner/src/pool/mod.rs +++ b/miner/src/pool/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction Pool diff --git a/miner/src/pool/queue.rs b/miner/src/pool/queue.rs index 90afdc812..ed049985c 100644 --- a/miner/src/pool/queue.rs +++ b/miner/src/pool/queue.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethereum Transaction Queue diff --git a/miner/src/pool/ready.rs b/miner/src/pool/ready.rs index b023faa07..eec82c4f2 100644 --- a/miner/src/pool/ready.rs +++ b/miner/src/pool/ready.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction Readiness indicator //! diff --git a/miner/src/pool/replace.rs b/miner/src/pool/replace.rs index 99513817b..f098dcfe3 100644 --- a/miner/src/pool/replace.rs +++ b/miner/src/pool/replace.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Replacing Transactions //! diff --git a/miner/src/pool/scoring.rs b/miner/src/pool/scoring.rs index 48812d59c..dc485a08a 100644 --- a/miner/src/pool/scoring.rs +++ b/miner/src/pool/scoring.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction Scoring and Ordering //! diff --git a/miner/src/pool/tests/client.rs b/miner/src/pool/tests/client.rs index 5928c9ee2..ffd453b6a 100644 --- a/miner/src/pool/tests/client.rs +++ b/miner/src/pool/tests/client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::{atomic, Arc}; diff --git a/miner/src/pool/tests/mod.rs b/miner/src/pool/tests/mod.rs index dd9ff1630..64d944844 100644 --- a/miner/src/pool/tests/mod.rs +++ b/miner/src/pool/tests/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::U256; use types::transaction::{self, PendingTransaction}; diff --git a/miner/src/pool/tests/tx.rs b/miner/src/pool/tests/tx.rs index 631b4cfac..f6a0da434 100644 --- a/miner/src/pool/tests/tx.rs +++ b/miner/src/pool/tests/tx.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{U256, H256}; use parity_crypto::publickey::{Random, Generator}; diff --git a/miner/src/pool/verifier.rs b/miner/src/pool/verifier.rs index fff62ea4f..0acbc5b18 100644 --- a/miner/src/pool/verifier.rs +++ b/miner/src/pool/verifier.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transaction Verifier //! diff --git a/miner/src/service_transaction_checker.rs b/miner/src/service_transaction_checker.rs index d4559dcc1..5faec5554 100644 --- a/miner/src/service_transaction_checker.rs +++ b/miner/src/service_transaction_checker.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A service transactions contract checker. diff --git a/miner/src/work_notify.rs b/miner/src/work_notify.rs index 0752f3492..3b5082ca1 100644 --- a/miner/src/work_notify.rs +++ b/miner/src/work_notify.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Sends HTTP notifications to a list of URLs every time new work is available. diff --git a/miner/stratum/src/lib.rs b/miner/stratum/src/lib.rs index c66405863..6c6067e56 100644 --- a/miner/stratum/src/lib.rs +++ b/miner/stratum/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Stratum protocol implementation for parity ethereum/bitcoin clients diff --git a/miner/stratum/src/traits.rs b/miner/stratum/src/traits.rs index 29bd79010..bc32c2b3f 100644 --- a/miner/stratum/src/traits.rs +++ b/miner/stratum/src/traits.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::H256; use jsonrpc_tcp_server::PushMessageError; diff --git a/miner/using-queue/src/lib.rs b/miner/using-queue/src/lib.rs index b4cff65bb..9d3d5d8d5 100644 --- a/miner/using-queue/src/lib.rs +++ b/miner/using-queue/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Queue-like data structure including notion of usage. diff --git a/parity/account.rs b/parity/account.rs index a15aafa5a..3653096dd 100644 --- a/parity/account.rs +++ b/parity/account.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use params::SpecType; diff --git a/parity/account_utils.rs b/parity/account_utils.rs index 1261ab2de..9f846bdd1 100644 --- a/parity/account_utils.rs +++ b/parity/account_utils.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/parity/blockchain.rs b/parity/blockchain.rs index 4e593f8dc..78730a89f 100644 --- a/parity/blockchain.rs +++ b/parity/blockchain.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::str::from_utf8; use std::{io, fs}; diff --git a/parity/cache.rs b/parity/cache.rs index e91efd663..6a819f759 100644 --- a/parity/cache.rs +++ b/parity/cache.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp::max; diff --git a/parity/cli/mod.rs b/parity/cli/mod.rs index 2b1932842..f35e372bb 100644 --- a/parity/cli/mod.rs +++ b/parity/cli/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #[macro_use] mod usage; diff --git a/parity/cli/presets/mod.rs b/parity/cli/presets/mod.rs index 53fdb2606..0ac4ef0f1 100644 --- a/parity/cli/presets/mod.rs +++ b/parity/cli/presets/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::io::{Error, ErrorKind}; diff --git a/parity/cli/usage.rs b/parity/cli/usage.rs index 4939e1f9c..26b5fa728 100644 --- a/parity/cli/usage.rs +++ b/parity/cli/usage.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . macro_rules! return_if_parse_error { ($e:expr) => ( diff --git a/parity/configuration.rs b/parity/configuration.rs index db65c6189..d139bf550 100644 --- a/parity/configuration.rs +++ b/parity/configuration.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::time::Duration; use std::io::Read; diff --git a/parity/db/mod.rs b/parity/db/mod.rs index 0d3858ea5..9edc444a9 100644 --- a/parity/db/mod.rs +++ b/parity/db/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Database-related operations. diff --git a/parity/db/rocksdb/blooms.rs b/parity/db/rocksdb/blooms.rs index ef42fbaf1..6fd64533d 100644 --- a/parity/db/rocksdb/blooms.rs +++ b/parity/db/rocksdb/blooms.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Blooms migration from rocksdb to blooms-db diff --git a/parity/db/rocksdb/helpers.rs b/parity/db/rocksdb/helpers.rs index 09b4fa3ba..2d734fb13 100644 --- a/parity/db/rocksdb/helpers.rs +++ b/parity/db/rocksdb/helpers.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::HashMap; use std::path::Path; diff --git a/parity/db/rocksdb/migration.rs b/parity/db/rocksdb/migration.rs index 66225f18f..ce3b27be2 100644 --- a/parity/db/rocksdb/migration.rs +++ b/parity/db/rocksdb/migration.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fs; use std::io::{Read, Write, Error as IoError, ErrorKind}; diff --git a/parity/db/rocksdb/mod.rs b/parity/db/rocksdb/mod.rs index 541194df2..f1818b735 100644 --- a/parity/db/rocksdb/mod.rs +++ b/parity/db/rocksdb/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate kvdb_rocksdb; extern crate migration_rocksdb; diff --git a/parity/deprecated.rs b/parity/deprecated.rs index 7fce52654..5ca56d57a 100644 --- a/parity/deprecated.rs +++ b/parity/deprecated.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use cli::Args; diff --git a/parity/export_hardcoded_sync.rs b/parity/export_hardcoded_sync.rs index c55f2daf2..c404343d7 100644 --- a/parity/export_hardcoded_sync.rs +++ b/parity/export_hardcoded_sync.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use std::time::Duration; diff --git a/parity/helpers.rs b/parity/helpers.rs index 53c520ea3..9031c50b7 100644 --- a/parity/helpers.rs +++ b/parity/helpers.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::io; use std::io::{Write, BufReader, BufRead}; diff --git a/parity/informant.rs b/parity/informant.rs index cc60b5c9a..871080309 100644 --- a/parity/informant.rs +++ b/parity/informant.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use std::sync::atomic::{AtomicUsize, AtomicBool, Ordering as AtomicOrdering}; diff --git a/parity/lib.rs b/parity/lib.rs index 130fdb123..82599dc5c 100644 --- a/parity/lib.rs +++ b/parity/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethcore client application. #![warn(missing_docs)] diff --git a/parity/light_helpers/epoch_fetch.rs b/parity/light_helpers/epoch_fetch.rs index 89a68d2df..5c861d1ef 100644 --- a/parity/light_helpers/epoch_fetch.rs +++ b/parity/light_helpers/epoch_fetch.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::{Arc, Weak}; diff --git a/parity/light_helpers/mod.rs b/parity/light_helpers/mod.rs index 656e969af..53a2f8cf1 100644 --- a/parity/light_helpers/mod.rs +++ b/parity/light_helpers/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Utilities and helpers for the light client. diff --git a/parity/logger/src/lib.rs b/parity/logger/src/lib.rs index d8afc347a..bca8c94cb 100644 --- a/parity/logger/src/lib.rs +++ b/parity/logger/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Logger for parity executables diff --git a/parity/logger/src/rotating.rs b/parity/logger/src/rotating.rs index 52854b3e1..fd962cf50 100644 --- a/parity/logger/src/rotating.rs +++ b/parity/logger/src/rotating.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Common log helper functions diff --git a/parity/main.rs b/parity/main.rs index 0a6af8a07..7ffc9ff19 100644 --- a/parity/main.rs +++ b/parity/main.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethcore client application. diff --git a/parity/modules.rs b/parity/modules.rs index efd663e7d..87a82a0dc 100644 --- a/parity/modules.rs +++ b/parity/modules.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{collections::BTreeSet, sync::{Arc, mpsc}}; diff --git a/parity/params.rs b/parity/params.rs index 904333a33..b30b2d552 100644 --- a/parity/params.rs +++ b/parity/params.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::HashSet; use std::time::Duration; diff --git a/parity/presale.rs b/parity/presale.rs index ed9feac0a..21543e6da 100644 --- a/parity/presale.rs +++ b/parity/presale.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethkey::Password; diff --git a/parity/rpc.rs b/parity/rpc.rs index 6f76f8f50..d089b70cd 100644 --- a/parity/rpc.rs +++ b/parity/rpc.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::io; use std::sync::Arc; diff --git a/parity/rpc_apis.rs b/parity/rpc_apis.rs index 025173049..5cbd1c759 100644 --- a/parity/rpc_apis.rs +++ b/parity/rpc_apis.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp::PartialEq; use std::collections::{BTreeMap, HashSet}; diff --git a/parity/run.rs b/parity/run.rs index 5cf7daeb7..a88533de9 100644 --- a/parity/run.rs +++ b/parity/run.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::any::Any; use std::sync::{Arc, Weak, atomic}; @@ -962,4 +962,3 @@ fn wait_for_drop(w: Weak) { warn!("Shutdown timeout reached, exiting uncleanly."); } - diff --git a/parity/secretstore/blockchain.rs b/parity/secretstore/blockchain.rs index 18187b513..b4575c705 100644 --- a/parity/secretstore/blockchain.rs +++ b/parity/secretstore/blockchain.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! SecretStoreChain implementation with information about blockchain, retrieved from the client @@ -243,4 +243,3 @@ impl ChainNotify for TrustedClient { } } } - diff --git a/parity/secretstore/mod.rs b/parity/secretstore/mod.rs index e1026e69b..a58f30127 100644 --- a/parity/secretstore/mod.rs +++ b/parity/secretstore/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Secret store related components. @@ -28,4 +28,4 @@ pub use self::server::{Configuration, NodeSecretKey, ContractAddress, Dependenci #[cfg(feature = "secretstore")] use self::blockchain::TrustedClient; #[cfg(all(feature = "accounts", feature = "secretstore"))] -use self::nodekeypair::KeyStoreNodeKeyPair; \ No newline at end of file +use self::nodekeypair::KeyStoreNodeKeyPair; diff --git a/parity/secretstore/nodekeypair.rs b/parity/secretstore/nodekeypair.rs index 932e56b59..0cc50d6c6 100644 --- a/parity/secretstore/nodekeypair.rs +++ b/parity/secretstore/nodekeypair.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Key pair with signing ability diff --git a/parity/secretstore/server.rs b/parity/secretstore/server.rs index 7f624a1e8..e300d42d1 100644 --- a/parity/secretstore/server.rs +++ b/parity/secretstore/server.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Secret store server's launcher, contains required configuration parameters and launch method diff --git a/parity/signer.rs b/parity/signer.rs index f451eb642..ad834294a 100644 --- a/parity/signer.rs +++ b/parity/signer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::io; use std::path::{Path, PathBuf}; diff --git a/parity/snapshot_cmd.rs b/parity/snapshot_cmd.rs index 3ce24bb52..012a450b4 100644 --- a/parity/snapshot_cmd.rs +++ b/parity/snapshot_cmd.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Snapshot and restoration commands. diff --git a/parity/stratum.rs b/parity/stratum.rs index f39ebdb5c..06cdb8227 100644 --- a/parity/stratum.rs +++ b/parity/stratum.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity sync service diff --git a/parity/upgrade.rs b/parity/upgrade.rs index 748076636..83b6f1738 100644 --- a/parity/upgrade.rs +++ b/parity/upgrade.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity upgrade logic diff --git a/parity/user_defaults.rs b/parity/user_defaults.rs index 491162dcb..f4de583b4 100644 --- a/parity/user_defaults.rs +++ b/parity/user_defaults.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fs::File; use std::io::Write; diff --git a/rpc/src/authcodes.rs b/rpc/src/authcodes.rs index 0f1ab4e19..c2cfc0874 100644 --- a/rpc/src/authcodes.rs +++ b/rpc/src/authcodes.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::io::{self, Read, Write}; use std::path::Path; diff --git a/rpc/src/http_common.rs b/rpc/src/http_common.rs index 5d4898a31..6240fdf5f 100644 --- a/rpc/src/http_common.rs +++ b/rpc/src/http_common.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transport-specific metadata extractors. diff --git a/rpc/src/lib.rs b/rpc/src/lib.rs index 8f995b72c..0eb4b2ca3 100644 --- a/rpc/src/lib.rs +++ b/rpc/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity Ethereum JSON-RPC Servers (WS, HTTP, IPC). diff --git a/rpc/src/tests/helpers.rs b/rpc/src/tests/helpers.rs index 57a405365..42afd973c 100644 --- a/rpc/src/tests/helpers.rs +++ b/rpc/src/tests/helpers.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::ops::{Deref, DerefMut}; use std::path::PathBuf; diff --git a/rpc/src/tests/http_client.rs b/rpc/src/tests/http_client.rs index 08639ff4a..a59ea29b1 100644 --- a/rpc/src/tests/http_client.rs +++ b/rpc/src/tests/http_client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::thread; use std::time::Duration; diff --git a/rpc/src/tests/mod.rs b/rpc/src/tests/mod.rs index 0d4ef1e33..2e6f74a35 100644 --- a/rpc/src/tests/mod.rs +++ b/rpc/src/tests/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! RPC integration tests. diff --git a/rpc/src/tests/rpc.rs b/rpc/src/tests/rpc.rs index 28aabab66..e02f37a64 100644 --- a/rpc/src/tests/rpc.rs +++ b/rpc/src/tests/rpc.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use jsonrpc_core::MetaIoHandler; use http::{self, hyper}; diff --git a/rpc/src/tests/ws.rs b/rpc/src/tests/ws.rs index 4a66cc987..5721a3aa6 100644 --- a/rpc/src/tests/ws.rs +++ b/rpc/src/tests/ws.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! WebSockets server tests. diff --git a/rpc/src/v1/extractors.rs b/rpc/src/v1/extractors.rs index 9cb062689..fae55abaa 100644 --- a/rpc/src/v1/extractors.rs +++ b/rpc/src/v1/extractors.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity-specific metadata extractors. diff --git a/rpc/src/v1/helpers/block_import.rs b/rpc/src/v1/helpers/block_import.rs index e0d55803d..edfe60b2e 100644 --- a/rpc/src/v1/helpers/block_import.rs +++ b/rpc/src/v1/helpers/block_import.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Block import analysis functions. diff --git a/rpc/src/v1/helpers/deprecated.rs b/rpc/src/v1/helpers/deprecated.rs index ba0fd3547..c976a3410 100644 --- a/rpc/src/v1/helpers/deprecated.rs +++ b/rpc/src/v1/helpers/deprecated.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . //! Deprecation notice for RPC methods. //! diff --git a/rpc/src/v1/helpers/dispatch/full.rs b/rpc/src/v1/helpers/dispatch/full.rs index 4fb936e30..6fe5abd63 100644 --- a/rpc/src/v1/helpers/dispatch/full.rs +++ b/rpc/src/v1/helpers/dispatch/full.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/rpc/src/v1/helpers/dispatch/light.rs b/rpc/src/v1/helpers/dispatch/light.rs index 2159670c4..b002b9ba5 100644 --- a/rpc/src/v1/helpers/dispatch/light.rs +++ b/rpc/src/v1/helpers/dispatch/light.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/rpc/src/v1/helpers/dispatch/mod.rs b/rpc/src/v1/helpers/dispatch/mod.rs index 4d0612cff..2ddbf194d 100644 --- a/rpc/src/v1/helpers/dispatch/mod.rs +++ b/rpc/src/v1/helpers/dispatch/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Utilities and helpers for transaction dispatch. diff --git a/rpc/src/v1/helpers/dispatch/prospective_signer.rs b/rpc/src/v1/helpers/dispatch/prospective_signer.rs index 90f169351..443d3b0fa 100644 --- a/rpc/src/v1/helpers/dispatch/prospective_signer.rs +++ b/rpc/src/v1/helpers/dispatch/prospective_signer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/rpc/src/v1/helpers/dispatch/signing.rs b/rpc/src/v1/helpers/dispatch/signing.rs index 0d14c79e2..2f08de59a 100644 --- a/rpc/src/v1/helpers/dispatch/signing.rs +++ b/rpc/src/v1/helpers/dispatch/signing.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; @@ -112,4 +112,3 @@ fn signature(accounts: &AccountProvider, address: Address, hash: H256, password: _ => errors::password(e), }) } - diff --git a/rpc/src/v1/helpers/eip191.rs b/rpc/src/v1/helpers/eip191.rs index 58a990333..16e60919f 100644 --- a/rpc/src/v1/helpers/eip191.rs +++ b/rpc/src/v1/helpers/eip191.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! EIP-191 compliant decoding + hashing use v1::types::{EIP191Version, Bytes, PresignedTransaction}; diff --git a/rpc/src/v1/helpers/engine_signer.rs b/rpc/src/v1/helpers/engine_signer.rs index 032fc97de..6b22b3fb7 100644 --- a/rpc/src/v1/helpers/engine_signer.rs +++ b/rpc/src/v1/helpers/engine_signer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; @@ -55,4 +55,3 @@ impl engine::signer::EngineSigner for EngineSigner { self.accounts.account_public(self.address, &self.password).ok() } } - diff --git a/rpc/src/v1/helpers/errors.rs b/rpc/src/v1/helpers/errors.rs index 5fcf45ec8..4d8ce9583 100644 --- a/rpc/src/v1/helpers/errors.rs +++ b/rpc/src/v1/helpers/errors.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! RPC Error codes and error objects diff --git a/rpc/src/v1/helpers/external_signer/mod.rs b/rpc/src/v1/helpers/external_signer/mod.rs index 412333350..809c012f3 100644 --- a/rpc/src/v1/helpers/external_signer/mod.rs +++ b/rpc/src/v1/helpers/external_signer/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! An list of requests to be confirmed or signed by an external approver/signer. diff --git a/rpc/src/v1/helpers/external_signer/oneshot.rs b/rpc/src/v1/helpers/external_signer/oneshot.rs index 9b9334806..362c7cb38 100644 --- a/rpc/src/v1/helpers/external_signer/oneshot.rs +++ b/rpc/src/v1/helpers/external_signer/oneshot.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use jsonrpc_core::Error; use jsonrpc_core::futures::{self, Future}; diff --git a/rpc/src/v1/helpers/external_signer/signing_queue.rs b/rpc/src/v1/helpers/external_signer/signing_queue.rs index 9f0c51392..bc654d361 100644 --- a/rpc/src/v1/helpers/external_signer/signing_queue.rs +++ b/rpc/src/v1/helpers/external_signer/signing_queue.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::BTreeMap; diff --git a/rpc/src/v1/helpers/fake_sign.rs b/rpc/src/v1/helpers/fake_sign.rs index 13f7b4e79..0e0db7488 100644 --- a/rpc/src/v1/helpers/fake_sign.rs +++ b/rpc/src/v1/helpers/fake_sign.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use types::transaction::{Transaction, SignedTransaction, Action}; use std::cmp::min; diff --git a/rpc/src/v1/helpers/light_fetch.rs b/rpc/src/v1/helpers/light_fetch.rs index 365ec6d76..e6db9fdd5 100644 --- a/rpc/src/v1/helpers/light_fetch.rs +++ b/rpc/src/v1/helpers/light_fetch.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Helpers for fetching blockchain data either from the light client or the network. diff --git a/rpc/src/v1/helpers/mod.rs b/rpc/src/v1/helpers/mod.rs index ff3c60dcf..5790b8d4c 100644 --- a/rpc/src/v1/helpers/mod.rs +++ b/rpc/src/v1/helpers/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #[macro_use] pub mod errors; diff --git a/rpc/src/v1/helpers/network_settings.rs b/rpc/src/v1/helpers/network_settings.rs index 1d5ae4a26..b6fa3f5b5 100644 --- a/rpc/src/v1/helpers/network_settings.rs +++ b/rpc/src/v1/helpers/network_settings.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Structure to hold network settings configured from CLI diff --git a/rpc/src/v1/helpers/nonce.rs b/rpc/src/v1/helpers/nonce.rs index d82227f91..2ba52a4d8 100644 --- a/rpc/src/v1/helpers/nonce.rs +++ b/rpc/src/v1/helpers/nonce.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{cmp, mem}; use std::collections::HashMap; diff --git a/rpc/src/v1/helpers/poll_filter.rs b/rpc/src/v1/helpers/poll_filter.rs index a0537794b..0457fc681 100644 --- a/rpc/src/v1/helpers/poll_filter.rs +++ b/rpc/src/v1/helpers/poll_filter.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Helper type with all filter state data. diff --git a/rpc/src/v1/helpers/poll_manager.rs b/rpc/src/v1/helpers/poll_manager.rs index 45df1e32d..4b8e29de4 100644 --- a/rpc/src/v1/helpers/poll_manager.rs +++ b/rpc/src/v1/helpers/poll_manager.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Indexes all rpc poll requests. diff --git a/rpc/src/v1/helpers/requests.rs b/rpc/src/v1/helpers/requests.rs index 1d0d920d3..411ed303e 100644 --- a/rpc/src/v1/helpers/requests.rs +++ b/rpc/src/v1/helpers/requests.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{U256, H256, Address}; use bytes::Bytes; diff --git a/rpc/src/v1/helpers/secretstore.rs b/rpc/src/v1/helpers/secretstore.rs index e4de0a905..bdaf3ae3c 100644 --- a/rpc/src/v1/helpers/secretstore.rs +++ b/rpc/src/v1/helpers/secretstore.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::BTreeSet; use rand::{RngCore, rngs::OsRng}; diff --git a/rpc/src/v1/helpers/signature.rs b/rpc/src/v1/helpers/signature.rs index 31a66e168..d377d5507 100644 --- a/rpc/src/v1/helpers/signature.rs +++ b/rpc/src/v1/helpers/signature.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use crypto::publickey::{recover, public_to_address, Signature}; use ethereum_types::{H256, U64}; diff --git a/rpc/src/v1/helpers/subscribers.rs b/rpc/src/v1/helpers/subscribers.rs index e9f0d0a55..f885fd20e 100644 --- a/rpc/src/v1/helpers/subscribers.rs +++ b/rpc/src/v1/helpers/subscribers.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A map of subscribers. diff --git a/rpc/src/v1/helpers/subscription_manager.rs b/rpc/src/v1/helpers/subscription_manager.rs index 6517e74e4..52029d5f3 100644 --- a/rpc/src/v1/helpers/subscription_manager.rs +++ b/rpc/src/v1/helpers/subscription_manager.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Generic poll manager for Pub-Sub. diff --git a/rpc/src/v1/helpers/work.rs b/rpc/src/v1/helpers/work.rs index 91134934c..7b901630d 100644 --- a/rpc/src/v1/helpers/work.rs +++ b/rpc/src/v1/helpers/work.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Helpers for submit a POW work. diff --git a/rpc/src/v1/impls/debug.rs b/rpc/src/v1/impls/debug.rs index 60853fede..769053cef 100644 --- a/rpc/src/v1/impls/debug.rs +++ b/rpc/src/v1/impls/debug.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Debug APIs RPC implementation diff --git a/rpc/src/v1/impls/eth.rs b/rpc/src/v1/impls/eth.rs index b98d33808..fa28a7e43 100644 --- a/rpc/src/v1/impls/eth.rs +++ b/rpc/src/v1/impls/eth.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Eth rpc implementation. diff --git a/rpc/src/v1/impls/eth_filter.rs b/rpc/src/v1/impls/eth_filter.rs index bf5decabd..b6d06e970 100644 --- a/rpc/src/v1/impls/eth_filter.rs +++ b/rpc/src/v1/impls/eth_filter.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Eth Filter RPC implementation diff --git a/rpc/src/v1/impls/eth_pubsub.rs b/rpc/src/v1/impls/eth_pubsub.rs index 645d53c34..9bf2b0506 100644 --- a/rpc/src/v1/impls/eth_pubsub.rs +++ b/rpc/src/v1/impls/eth_pubsub.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Eth PUB-SUB rpc implementation. diff --git a/rpc/src/v1/impls/light/eth.rs b/rpc/src/v1/impls/light/eth.rs index 25b3c114f..42e958007 100644 --- a/rpc/src/v1/impls/light/eth.rs +++ b/rpc/src/v1/impls/light/eth.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Eth RPC interface for the light client. diff --git a/rpc/src/v1/impls/light/mod.rs b/rpc/src/v1/impls/light/mod.rs index 9359e305b..c6fb8636c 100644 --- a/rpc/src/v1/impls/light/mod.rs +++ b/rpc/src/v1/impls/light/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! RPC implementations for the light client. //! diff --git a/rpc/src/v1/impls/light/net.rs b/rpc/src/v1/impls/light/net.rs index 6f4f2cfdc..ffadbc1a6 100644 --- a/rpc/src/v1/impls/light/net.rs +++ b/rpc/src/v1/impls/light/net.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Net rpc implementation. use std::sync::Arc; diff --git a/rpc/src/v1/impls/light/parity.rs b/rpc/src/v1/impls/light/parity.rs index 6c08167e3..4168abd97 100644 --- a/rpc/src/v1/impls/light/parity.rs +++ b/rpc/src/v1/impls/light/parity.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity-specific rpc implementation. use std::sync::Arc; diff --git a/rpc/src/v1/impls/light/parity_set.rs b/rpc/src/v1/impls/light/parity_set.rs index acd9d17ef..603b637ca 100644 --- a/rpc/src/v1/impls/light/parity_set.rs +++ b/rpc/src/v1/impls/light/parity_set.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity-specific rpc interface for operations altering the settings. //! Implementation for light client. diff --git a/rpc/src/v1/impls/light/trace.rs b/rpc/src/v1/impls/light/trace.rs index 9ab438eeb..5dce5b8a9 100644 --- a/rpc/src/v1/impls/light/trace.rs +++ b/rpc/src/v1/impls/light/trace.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Traces api implementation. diff --git a/rpc/src/v1/impls/mod.rs b/rpc/src/v1/impls/mod.rs index a83f29760..47fb9ee33 100644 --- a/rpc/src/v1/impls/mod.rs +++ b/rpc/src/v1/impls/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethereum rpc interface implementation. diff --git a/rpc/src/v1/impls/net.rs b/rpc/src/v1/impls/net.rs index cbba0d7f2..418c2c103 100644 --- a/rpc/src/v1/impls/net.rs +++ b/rpc/src/v1/impls/net.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Net rpc implementation. use std::sync::Arc; diff --git a/rpc/src/v1/impls/parity.rs b/rpc/src/v1/impls/parity.rs index 505393ffb..cbb89a8ca 100644 --- a/rpc/src/v1/impls/parity.rs +++ b/rpc/src/v1/impls/parity.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity-specific rpc implementation. use std::sync::Arc; diff --git a/rpc/src/v1/impls/parity_accounts.rs b/rpc/src/v1/impls/parity_accounts.rs index 7ed042d0e..5686b049a 100644 --- a/rpc/src/v1/impls/parity_accounts.rs +++ b/rpc/src/v1/impls/parity_accounts.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Account management (personal) rpc implementation use std::sync::Arc; diff --git a/rpc/src/v1/impls/parity_set.rs b/rpc/src/v1/impls/parity_set.rs index dafb46b85..9cb4fb8c0 100644 --- a/rpc/src/v1/impls/parity_set.rs +++ b/rpc/src/v1/impls/parity_set.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . /// Parity-specific rpc interface for operations altering the settings. use std::io; diff --git a/rpc/src/v1/impls/personal.rs b/rpc/src/v1/impls/personal.rs index fc74448f2..a006c1fde 100644 --- a/rpc/src/v1/impls/personal.rs +++ b/rpc/src/v1/impls/personal.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Account management (personal) rpc implementation use std::sync::Arc; diff --git a/rpc/src/v1/impls/private.rs b/rpc/src/v1/impls/private.rs index f0becfc1c..cffccbac5 100644 --- a/rpc/src/v1/impls/private.rs +++ b/rpc/src/v1/impls/private.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Private transaction signing RPC implementation. diff --git a/rpc/src/v1/impls/pubsub.rs b/rpc/src/v1/impls/pubsub.rs index 46a626ab2..1036517df 100644 --- a/rpc/src/v1/impls/pubsub.rs +++ b/rpc/src/v1/impls/pubsub.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity-specific PUB-SUB rpc implementation. diff --git a/rpc/src/v1/impls/rpc.rs b/rpc/src/v1/impls/rpc.rs index e7a6d74fe..bae3cc361 100644 --- a/rpc/src/v1/impls/rpc.rs +++ b/rpc/src/v1/impls/rpc.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! RPC generic methods implementation. use std::collections::BTreeMap; diff --git a/rpc/src/v1/impls/secretstore.rs b/rpc/src/v1/impls/secretstore.rs index c09a5e442..f120072b6 100644 --- a/rpc/src/v1/impls/secretstore.rs +++ b/rpc/src/v1/impls/secretstore.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! SecretStore-specific rpc implementation. diff --git a/rpc/src/v1/impls/signer.rs b/rpc/src/v1/impls/signer.rs index 8dd4da1af..d68e12e95 100644 --- a/rpc/src/v1/impls/signer.rs +++ b/rpc/src/v1/impls/signer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Transactions Confirmations rpc implementation diff --git a/rpc/src/v1/impls/signing.rs b/rpc/src/v1/impls/signing.rs index 8e545eda1..d5e99fb70 100644 --- a/rpc/src/v1/impls/signing.rs +++ b/rpc/src/v1/impls/signing.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Signing RPC implementation. diff --git a/rpc/src/v1/impls/signing_unsafe.rs b/rpc/src/v1/impls/signing_unsafe.rs index bae82da2c..e48ab595e 100644 --- a/rpc/src/v1/impls/signing_unsafe.rs +++ b/rpc/src/v1/impls/signing_unsafe.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Unsafe Signing RPC implementation. diff --git a/rpc/src/v1/impls/traces.rs b/rpc/src/v1/impls/traces.rs index 5518d831a..9ac682ad0 100644 --- a/rpc/src/v1/impls/traces.rs +++ b/rpc/src/v1/impls/traces.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Traces api implementation. diff --git a/rpc/src/v1/impls/transactions_pool.rs b/rpc/src/v1/impls/transactions_pool.rs index 789395d7e..478229262 100644 --- a/rpc/src/v1/impls/transactions_pool.rs +++ b/rpc/src/v1/impls/transactions_pool.rs @@ -1,3 +1,19 @@ +// Copyright 2015-2020 Parity Technologies (UK) Ltd. +// This file is part of Open Ethereum. + +// Open Ethereum 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. + +// Open Ethereum 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 Open Ethereum. If not, see . + use std::sync::{Arc, Weak}; use jsonrpc_core::Result; diff --git a/rpc/src/v1/impls/web3.rs b/rpc/src/v1/impls/web3.rs index 93203aca8..799a8d15e 100644 --- a/rpc/src/v1/impls/web3.rs +++ b/rpc/src/v1/impls/web3.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Web3 rpc implementation. use ethereum_types::H256; diff --git a/rpc/src/v1/informant.rs b/rpc/src/v1/informant.rs index dea0e3753..b9f0394d6 100644 --- a/rpc/src/v1/informant.rs +++ b/rpc/src/v1/informant.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! RPC Requests Statistics diff --git a/rpc/src/v1/metadata.rs b/rpc/src/v1/metadata.rs index c4171e35b..533d92ee2 100644 --- a/rpc/src/v1/metadata.rs +++ b/rpc/src/v1/metadata.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity RPC requests Metadata. use std::sync::Arc; diff --git a/rpc/src/v1/mod.rs b/rpc/src/v1/mod.rs index 1019c0f49..ecde6d334 100644 --- a/rpc/src/v1/mod.rs +++ b/rpc/src/v1/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethcore rpc v1. //! diff --git a/rpc/src/v1/tests/eth.rs b/rpc/src/v1/tests/eth.rs index f11822624..35efcf400 100644 --- a/rpc/src/v1/tests/eth.rs +++ b/rpc/src/v1/tests/eth.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! rpc integration tests. diff --git a/rpc/src/v1/tests/helpers/miner_service.rs b/rpc/src/v1/tests/helpers/miner_service.rs index f1e4dd6cc..4a69a35ad 100644 --- a/rpc/src/v1/tests/helpers/miner_service.rs +++ b/rpc/src/v1/tests/helpers/miner_service.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Test implementation of miner service. diff --git a/rpc/src/v1/tests/helpers/mod.rs b/rpc/src/v1/tests/helpers/mod.rs index 271c0bec4..34d9a5708 100644 --- a/rpc/src/v1/tests/helpers/mod.rs +++ b/rpc/src/v1/tests/helpers/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Test rpc services. diff --git a/rpc/src/v1/tests/helpers/snapshot_service.rs b/rpc/src/v1/tests/helpers/snapshot_service.rs index 97294aec4..7bf66d661 100644 --- a/rpc/src/v1/tests/helpers/snapshot_service.rs +++ b/rpc/src/v1/tests/helpers/snapshot_service.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use snapshot::SnapshotService; diff --git a/rpc/src/v1/tests/helpers/sync_provider.rs b/rpc/src/v1/tests/helpers/sync_provider.rs index a7984d2ae..8578f653a 100644 --- a/rpc/src/v1/tests/helpers/sync_provider.rs +++ b/rpc/src/v1/tests/helpers/sync_provider.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Test implementation of SyncProvider. diff --git a/rpc/src/v1/tests/helpers/update_service.rs b/rpc/src/v1/tests/helpers/update_service.rs index b1dd75883..8301a5fc0 100644 --- a/rpc/src/v1/tests/helpers/update_service.rs +++ b/rpc/src/v1/tests/helpers/update_service.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Test implementation of fetch client. diff --git a/rpc/src/v1/tests/mocked/debug.rs b/rpc/src/v1/tests/mocked/debug.rs index 0883ecc1b..06890bb4f 100644 --- a/rpc/src/v1/tests/mocked/debug.rs +++ b/rpc/src/v1/tests/mocked/debug.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/rpc/src/v1/tests/mocked/eth.rs b/rpc/src/v1/tests/mocked/eth.rs index 5e8fe52a8..5f81c1a65 100644 --- a/rpc/src/v1/tests/mocked/eth.rs +++ b/rpc/src/v1/tests/mocked/eth.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::str::FromStr; use std::collections::HashMap; diff --git a/rpc/src/v1/tests/mocked/eth_pubsub.rs b/rpc/src/v1/tests/mocked/eth_pubsub.rs index 67438f9f4..4d84b0094 100644 --- a/rpc/src/v1/tests/mocked/eth_pubsub.rs +++ b/rpc/src/v1/tests/mocked/eth_pubsub.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/rpc/src/v1/tests/mocked/manage_network.rs b/rpc/src/v1/tests/mocked/manage_network.rs index dfd7c7799..90bcd6283 100644 --- a/rpc/src/v1/tests/mocked/manage_network.rs +++ b/rpc/src/v1/tests/mocked/manage_network.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::ops::RangeInclusive; use sync::ManageNetwork; diff --git a/rpc/src/v1/tests/mocked/mod.rs b/rpc/src/v1/tests/mocked/mod.rs index 41ca1f861..13cf640d3 100644 --- a/rpc/src/v1/tests/mocked/mod.rs +++ b/rpc/src/v1/tests/mocked/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! RPC mocked tests. Most of these test that the RPC server is serializing and forwarding //! method calls properly. diff --git a/rpc/src/v1/tests/mocked/net.rs b/rpc/src/v1/tests/mocked/net.rs index c7f862bff..f342d538e 100644 --- a/rpc/src/v1/tests/mocked/net.rs +++ b/rpc/src/v1/tests/mocked/net.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use jsonrpc_core::IoHandler; diff --git a/rpc/src/v1/tests/mocked/parity.rs b/rpc/src/v1/tests/mocked/parity.rs index d2c60b41c..b20bd042c 100644 --- a/rpc/src/v1/tests/mocked/parity.rs +++ b/rpc/src/v1/tests/mocked/parity.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use ethcore::test_helpers::TestBlockChainClient; diff --git a/rpc/src/v1/tests/mocked/parity_accounts.rs b/rpc/src/v1/tests/mocked/parity_accounts.rs index 09807afad..609ad823b 100644 --- a/rpc/src/v1/tests/mocked/parity_accounts.rs +++ b/rpc/src/v1/tests/mocked/parity_accounts.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use std::str::FromStr; diff --git a/rpc/src/v1/tests/mocked/parity_set.rs b/rpc/src/v1/tests/mocked/parity_set.rs index 6f11176cb..d3bb7c75e 100644 --- a/rpc/src/v1/tests/mocked/parity_set.rs +++ b/rpc/src/v1/tests/mocked/parity_set.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use std::str::FromStr; diff --git a/rpc/src/v1/tests/mocked/personal.rs b/rpc/src/v1/tests/mocked/personal.rs index bf7138281..a4cee10b1 100644 --- a/rpc/src/v1/tests/mocked/personal.rs +++ b/rpc/src/v1/tests/mocked/personal.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use std::str::FromStr; diff --git a/rpc/src/v1/tests/mocked/pubsub.rs b/rpc/src/v1/tests/mocked/pubsub.rs index 30dc11df5..a1da58497 100644 --- a/rpc/src/v1/tests/mocked/pubsub.rs +++ b/rpc/src/v1/tests/mocked/pubsub.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::{atomic, Arc}; diff --git a/rpc/src/v1/tests/mocked/rpc.rs b/rpc/src/v1/tests/mocked/rpc.rs index 939880c19..31f73e12a 100644 --- a/rpc/src/v1/tests/mocked/rpc.rs +++ b/rpc/src/v1/tests/mocked/rpc.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::BTreeMap; use jsonrpc_core::IoHandler; diff --git a/rpc/src/v1/tests/mocked/secretstore.rs b/rpc/src/v1/tests/mocked/secretstore.rs index b7cf32317..a716ebcb4 100644 --- a/rpc/src/v1/tests/mocked/secretstore.rs +++ b/rpc/src/v1/tests/mocked/secretstore.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/rpc/src/v1/tests/mocked/signer.rs b/rpc/src/v1/tests/mocked/signer.rs index 29b8e5727..f362e8830 100644 --- a/rpc/src/v1/tests/mocked/signer.rs +++ b/rpc/src/v1/tests/mocked/signer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; use std::str::FromStr; diff --git a/rpc/src/v1/tests/mocked/signing.rs b/rpc/src/v1/tests/mocked/signing.rs index 5e9b9bd9f..3a4cbe730 100644 --- a/rpc/src/v1/tests/mocked/signing.rs +++ b/rpc/src/v1/tests/mocked/signing.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::thread; use std::str::FromStr; diff --git a/rpc/src/v1/tests/mocked/signing_unsafe.rs b/rpc/src/v1/tests/mocked/signing_unsafe.rs index ffc7e9bfe..0c5a81d28 100644 --- a/rpc/src/v1/tests/mocked/signing_unsafe.rs +++ b/rpc/src/v1/tests/mocked/signing_unsafe.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . use std::str::FromStr; use std::sync::Arc; diff --git a/rpc/src/v1/tests/mocked/traces.rs b/rpc/src/v1/tests/mocked/traces.rs index 0ae9e6195..1457bb6ae 100644 --- a/rpc/src/v1/tests/mocked/traces.rs +++ b/rpc/src/v1/tests/mocked/traces.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/rpc/src/v1/tests/mocked/web3.rs b/rpc/src/v1/tests/mocked/web3.rs index 7c729d011..3045b73da 100644 --- a/rpc/src/v1/tests/mocked/web3.rs +++ b/rpc/src/v1/tests/mocked/web3.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use jsonrpc_core::IoHandler; use version::version; diff --git a/rpc/src/v1/tests/mod.rs b/rpc/src/v1/tests/mod.rs index b3996b179..57ba077fc 100644 --- a/rpc/src/v1/tests/mod.rs +++ b/rpc/src/v1/tests/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! RPC unit test moduleS diff --git a/rpc/src/v1/traits/debug.rs b/rpc/src/v1/traits/debug.rs index 573ee5a3d..ff56a285a 100644 --- a/rpc/src/v1/traits/debug.rs +++ b/rpc/src/v1/traits/debug.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Debug RPC interface. diff --git a/rpc/src/v1/traits/eth.rs b/rpc/src/v1/traits/eth.rs index 07bba3f6b..8fb1bba70 100644 --- a/rpc/src/v1/traits/eth.rs +++ b/rpc/src/v1/traits/eth.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Eth rpc interface. use jsonrpc_core::{Result, BoxFuture}; diff --git a/rpc/src/v1/traits/eth_pubsub.rs b/rpc/src/v1/traits/eth_pubsub.rs index e06e410d3..ffaeb7d92 100644 --- a/rpc/src/v1/traits/eth_pubsub.rs +++ b/rpc/src/v1/traits/eth_pubsub.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Eth PUB-SUB rpc interface. diff --git a/rpc/src/v1/traits/eth_signing.rs b/rpc/src/v1/traits/eth_signing.rs index 0e65d7804..47c1d7174 100644 --- a/rpc/src/v1/traits/eth_signing.rs +++ b/rpc/src/v1/traits/eth_signing.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Eth rpc interface. diff --git a/rpc/src/v1/traits/mod.rs b/rpc/src/v1/traits/mod.rs index 5aee5c0cc..40a7e16e1 100644 --- a/rpc/src/v1/traits/mod.rs +++ b/rpc/src/v1/traits/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethereum rpc interfaces. diff --git a/rpc/src/v1/traits/net.rs b/rpc/src/v1/traits/net.rs index b947e6387..2415be4b5 100644 --- a/rpc/src/v1/traits/net.rs +++ b/rpc/src/v1/traits/net.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Net rpc interface. use jsonrpc_core::Result; diff --git a/rpc/src/v1/traits/parity.rs b/rpc/src/v1/traits/parity.rs index 27e2a8e6f..d84cb054b 100644 --- a/rpc/src/v1/traits/parity.rs +++ b/rpc/src/v1/traits/parity.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity-specific rpc interface. diff --git a/rpc/src/v1/traits/parity_accounts.rs b/rpc/src/v1/traits/parity_accounts.rs index 32226ff58..2306b8660 100644 --- a/rpc/src/v1/traits/parity_accounts.rs +++ b/rpc/src/v1/traits/parity_accounts.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity Accounts-related rpc interface. use std::collections::BTreeMap; diff --git a/rpc/src/v1/traits/parity_set.rs b/rpc/src/v1/traits/parity_set.rs index 16dac93ea..26716ab75 100644 --- a/rpc/src/v1/traits/parity_set.rs +++ b/rpc/src/v1/traits/parity_set.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity-specific rpc interface for operations altering the settings. diff --git a/rpc/src/v1/traits/parity_signing.rs b/rpc/src/v1/traits/parity_signing.rs index b4fc50746..843baf1fb 100644 --- a/rpc/src/v1/traits/parity_signing.rs +++ b/rpc/src/v1/traits/parity_signing.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! ParitySigning rpc interface. use jsonrpc_core::{BoxFuture, Result}; diff --git a/rpc/src/v1/traits/personal.rs b/rpc/src/v1/traits/personal.rs index 349a59820..0b8cd87f4 100644 --- a/rpc/src/v1/traits/personal.rs +++ b/rpc/src/v1/traits/personal.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Personal rpc interface. use eip_712::EIP712; diff --git a/rpc/src/v1/traits/private.rs b/rpc/src/v1/traits/private.rs index 42e92aa3b..f72210c3e 100644 --- a/rpc/src/v1/traits/private.rs +++ b/rpc/src/v1/traits/private.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! SecretStore-specific rpc interface. diff --git a/rpc/src/v1/traits/pubsub.rs b/rpc/src/v1/traits/pubsub.rs index 019f5fd6a..1951778b6 100644 --- a/rpc/src/v1/traits/pubsub.rs +++ b/rpc/src/v1/traits/pubsub.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity-specific PUB-SUB rpc interface. diff --git a/rpc/src/v1/traits/rpc.rs b/rpc/src/v1/traits/rpc.rs index d647403f4..f85a8742d 100644 --- a/rpc/src/v1/traits/rpc.rs +++ b/rpc/src/v1/traits/rpc.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! RPC interface. diff --git a/rpc/src/v1/traits/secretstore.rs b/rpc/src/v1/traits/secretstore.rs index 7d67cb3fd..c6ff2a6d9 100644 --- a/rpc/src/v1/traits/secretstore.rs +++ b/rpc/src/v1/traits/secretstore.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! SecretStore-specific rpc interface. diff --git a/rpc/src/v1/traits/signer.rs b/rpc/src/v1/traits/signer.rs index 0c00c3641..97f9c4efb 100644 --- a/rpc/src/v1/traits/signer.rs +++ b/rpc/src/v1/traits/signer.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity Signer-related rpc interface. diff --git a/rpc/src/v1/traits/traces.rs b/rpc/src/v1/traits/traces.rs index 679ed912b..33d48cba0 100644 --- a/rpc/src/v1/traits/traces.rs +++ b/rpc/src/v1/traits/traces.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Traces specific rpc interface. diff --git a/rpc/src/v1/traits/transactions_pool.rs b/rpc/src/v1/traits/transactions_pool.rs index 1eb19ca16..04e8f6245 100644 --- a/rpc/src/v1/traits/transactions_pool.rs +++ b/rpc/src/v1/traits/transactions_pool.rs @@ -1,3 +1,19 @@ +// Copyright 2015-2020 Parity Technologies (UK) Ltd. +// This file is part of Open Ethereum. + +// Open Ethereum 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. + +// Open Ethereum 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 Open Ethereum. If not, see . + //! Transactions pool PUB-SUB rpc interface. use jsonrpc_core::Result; diff --git a/rpc/src/v1/traits/web3.rs b/rpc/src/v1/traits/web3.rs index 1815eb28a..f37dca05a 100644 --- a/rpc/src/v1/traits/web3.rs +++ b/rpc/src/v1/traits/web3.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Web3 rpc interface. use ethereum_types::H256; diff --git a/rpc/src/v1/types/account_info.rs b/rpc/src/v1/types/account_info.rs index d2335035f..9f0003ffa 100644 --- a/rpc/src/v1/types/account_info.rs +++ b/rpc/src/v1/types/account_info.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Return types for RPC calls diff --git a/rpc/src/v1/types/block.rs b/rpc/src/v1/types/block.rs index 317a1a582..40b7d4889 100644 --- a/rpc/src/v1/types/block.rs +++ b/rpc/src/v1/types/block.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::ops::Deref; use std::collections::BTreeMap; diff --git a/rpc/src/v1/types/block_number.rs b/rpc/src/v1/types/block_number.rs index e0a46e0d5..11e06d170 100644 --- a/rpc/src/v1/types/block_number.rs +++ b/rpc/src/v1/types/block_number.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use serde::{Deserialize, Deserializer, Serialize, Serializer}; diff --git a/rpc/src/v1/types/bytes.rs b/rpc/src/v1/types/bytes.rs index a43c91e47..f7c899180 100644 --- a/rpc/src/v1/types/bytes.rs +++ b/rpc/src/v1/types/bytes.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Serializable wrapper around vector of bytes diff --git a/rpc/src/v1/types/call_request.rs b/rpc/src/v1/types/call_request.rs index 0d0829e1d..996f674b1 100644 --- a/rpc/src/v1/types/call_request.rs +++ b/rpc/src/v1/types/call_request.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{H160, U256}; use v1::helpers::CallRequest as Request; diff --git a/rpc/src/v1/types/confirmations.rs b/rpc/src/v1/types/confirmations.rs index 22b60c88c..a2ab7a736 100644 --- a/rpc/src/v1/types/confirmations.rs +++ b/rpc/src/v1/types/confirmations.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Types used in Confirmations queue (Trusted Signer) diff --git a/rpc/src/v1/types/consensus_status.rs b/rpc/src/v1/types/consensus_status.rs index 50dfc5f49..35a3ca744 100644 --- a/rpc/src/v1/types/consensus_status.rs +++ b/rpc/src/v1/types/consensus_status.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{H160, H256}; use semver; diff --git a/rpc/src/v1/types/derivation.rs b/rpc/src/v1/types/derivation.rs index 6966d973e..a3b6ff66e 100644 --- a/rpc/src/v1/types/derivation.rs +++ b/rpc/src/v1/types/derivation.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use serde::{Deserialize, Deserializer}; diff --git a/rpc/src/v1/types/eip191.rs b/rpc/src/v1/types/eip191.rs index 5bff702ca..c888219e1 100644 --- a/rpc/src/v1/types/eip191.rs +++ b/rpc/src/v1/types/eip191.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! EIP-191 specific types diff --git a/rpc/src/v1/types/eth_types.rs b/rpc/src/v1/types/eth_types.rs index baa56fc1e..78fb1e70b 100644 --- a/rpc/src/v1/types/eth_types.rs +++ b/rpc/src/v1/types/eth_types.rs @@ -1,3 +1,19 @@ +// Copyright 2015-2020 Parity Technologies (UK) Ltd. +// This file is part of Open Ethereum. + +// Open Ethereum 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. + +// Open Ethereum 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 Open Ethereum. If not, see . + use ethereum_types::{H256, U256}; use serde_json; diff --git a/rpc/src/v1/types/filter.rs b/rpc/src/v1/types/filter.rs index 28cea0c79..e6732833a 100644 --- a/rpc/src/v1/types/filter.rs +++ b/rpc/src/v1/types/filter.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{H160, H256}; use jsonrpc_core::{Error as RpcError}; diff --git a/rpc/src/v1/types/histogram.rs b/rpc/src/v1/types/histogram.rs index b35de129e..2cd93f748 100644 --- a/rpc/src/v1/types/histogram.rs +++ b/rpc/src/v1/types/histogram.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Gas prices histogram. diff --git a/rpc/src/v1/types/index.rs b/rpc/src/v1/types/index.rs index 8e6fab18e..1ccc5ee40 100644 --- a/rpc/src/v1/types/index.rs +++ b/rpc/src/v1/types/index.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt; use serde::{Deserialize, Deserializer}; diff --git a/rpc/src/v1/types/log.rs b/rpc/src/v1/types/log.rs index 55654f6e3..4f372d82d 100644 --- a/rpc/src/v1/types/log.rs +++ b/rpc/src/v1/types/log.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{H160, H256, U256}; use types::log_entry::{LocalizedLogEntry, LogEntry}; diff --git a/rpc/src/v1/types/mod.rs b/rpc/src/v1/types/mod.rs index 93739467d..8b0a5c9f9 100644 --- a/rpc/src/v1/types/mod.rs +++ b/rpc/src/v1/types/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! RPC types diff --git a/rpc/src/v1/types/node_kind.rs b/rpc/src/v1/types/node_kind.rs index c34d90618..533a910ba 100644 --- a/rpc/src/v1/types/node_kind.rs +++ b/rpc/src/v1/types/node_kind.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Description of the node. diff --git a/rpc/src/v1/types/private_log.rs b/rpc/src/v1/types/private_log.rs index 66e8294ee..028b92d1f 100644 --- a/rpc/src/v1/types/private_log.rs +++ b/rpc/src/v1/types/private_log.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity. +// This file is part of Open Ethereum. -// Parity is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity. If not, see . +// along with Open Ethereum. If not, see . use std::time::SystemTime; use ethereum_types::{H160, H256}; @@ -96,4 +96,3 @@ impl From for PrivateTransactionLog { } } } - diff --git a/rpc/src/v1/types/private_receipt.rs b/rpc/src/v1/types/private_receipt.rs index 68dc949ca..509c26f17 100644 --- a/rpc/src/v1/types/private_receipt.rs +++ b/rpc/src/v1/types/private_receipt.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethcore_private_tx::{Receipt as EthPrivateReceipt}; use ethereum_types::{H160, H256}; diff --git a/rpc/src/v1/types/provenance.rs b/rpc/src/v1/types/provenance.rs index acf65291c..1ecbf37d7 100644 --- a/rpc/src/v1/types/provenance.rs +++ b/rpc/src/v1/types/provenance.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Request Provenance diff --git a/rpc/src/v1/types/pubsub.rs b/rpc/src/v1/types/pubsub.rs index 25908c067..36677d447 100644 --- a/rpc/src/v1/types/pubsub.rs +++ b/rpc/src/v1/types/pubsub.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Pub-Sub types. diff --git a/rpc/src/v1/types/receipt.rs b/rpc/src/v1/types/receipt.rs index afa2dcf54..274945108 100644 --- a/rpc/src/v1/types/receipt.rs +++ b/rpc/src/v1/types/receipt.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{H160, H256, U64, U256, Bloom as H2048}; use v1::types::Log; diff --git a/rpc/src/v1/types/rpc_settings.rs b/rpc/src/v1/types/rpc_settings.rs index 271049884..1b5d6b86e 100644 --- a/rpc/src/v1/types/rpc_settings.rs +++ b/rpc/src/v1/types/rpc_settings.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! RPC Settings data. diff --git a/rpc/src/v1/types/secretstore.rs b/rpc/src/v1/types/secretstore.rs index e3b1c681a..291c7b949 100644 --- a/rpc/src/v1/types/secretstore.rs +++ b/rpc/src/v1/types/secretstore.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::H512; use v1::types::Bytes; diff --git a/rpc/src/v1/types/sync.rs b/rpc/src/v1/types/sync.rs index 4e9eb41e3..37e1fb796 100644 --- a/rpc/src/v1/types/sync.rs +++ b/rpc/src/v1/types/sync.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use network::client_version::ClientVersion; use std::collections::BTreeMap; diff --git a/rpc/src/v1/types/trace.rs b/rpc/src/v1/types/trace.rs index f993acf5b..c7d1611d4 100644 --- a/rpc/src/v1/types/trace.rs +++ b/rpc/src/v1/types/trace.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::BTreeMap; diff --git a/rpc/src/v1/types/trace_filter.rs b/rpc/src/v1/types/trace_filter.rs index 3053d1db7..7da7ba8f5 100644 --- a/rpc/src/v1/types/trace_filter.rs +++ b/rpc/src/v1/types/trace_filter.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Trace filter deserialization. diff --git a/rpc/src/v1/types/transaction.rs b/rpc/src/v1/types/transaction.rs index 9e416026e..64230c18a 100644 --- a/rpc/src/v1/types/transaction.rs +++ b/rpc/src/v1/types/transaction.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::Arc; diff --git a/rpc/src/v1/types/transaction_condition.rs b/rpc/src/v1/types/transaction_condition.rs index 69e8ae6b0..6de6339f6 100644 --- a/rpc/src/v1/types/transaction_condition.rs +++ b/rpc/src/v1/types/transaction_condition.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use types::transaction; diff --git a/rpc/src/v1/types/transaction_request.rs b/rpc/src/v1/types/transaction_request.rs index 81a7bc3c6..827c1807f 100644 --- a/rpc/src/v1/types/transaction_request.rs +++ b/rpc/src/v1/types/transaction_request.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! `TransactionRequest` type diff --git a/rpc/src/v1/types/work.rs b/rpc/src/v1/types/work.rs index 5be6cb1e4..6debf8769 100644 --- a/rpc/src/v1/types/work.rs +++ b/rpc/src/v1/types/work.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::{H256, U256}; diff --git a/updater/hash-fetch/src/client.rs b/updater/hash-fetch/src/client.rs index 45bccc2fd..a6e051c13 100644 --- a/updater/hash-fetch/src/client.rs +++ b/updater/hash-fetch/src/client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Hash-addressed content resolver & fetcher. diff --git a/updater/hash-fetch/src/lib.rs b/updater/hash-fetch/src/lib.rs index 677a6df24..bd99a7ad2 100644 --- a/updater/hash-fetch/src/lib.rs +++ b/updater/hash-fetch/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Hash-addressed content resolver & fetcher. diff --git a/updater/hash-fetch/src/urlhint.rs b/updater/hash-fetch/src/urlhint.rs index 708ecf19d..f7d9e518c 100644 --- a/updater/hash-fetch/src/urlhint.rs +++ b/updater/hash-fetch/src/urlhint.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! URLHint Contract diff --git a/updater/src/lib.rs b/updater/src/lib.rs index 0752d01a4..4b4180fb4 100644 --- a/updater/src/lib.rs +++ b/updater/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Updater for Parity executables diff --git a/updater/src/service.rs b/updater/src/service.rs index 0af13af13..957dd2618 100644 --- a/updater/src/service.rs +++ b/updater/src/service.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use types::{CapState, ReleaseInfo, OperationsInfo, VersionInfo}; diff --git a/updater/src/types/all.rs b/updater/src/types/all.rs index 1cb4d88d7..098d55ec6 100644 --- a/updater/src/types/all.rs +++ b/updater/src/types/all.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Types used in the public API diff --git a/updater/src/types/mod.rs b/updater/src/types/mod.rs index 4bf028151..50c8f0ce7 100644 --- a/updater/src/types/mod.rs +++ b/updater/src/types/mod.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Types used in the public api diff --git a/updater/src/types/release_track.rs b/updater/src/types/release_track.rs index ab7160c05..5db1c9b27 100644 --- a/updater/src/types/release_track.rs +++ b/updater/src/types/release_track.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Types used in the public API diff --git a/updater/src/types/version_info.rs b/updater/src/types/version_info.rs index 586a12c95..772a35817 100644 --- a/updater/src/types/version_info.rs +++ b/updater/src/types/version_info.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Types used in the public API diff --git a/updater/src/updater.rs b/updater/src/updater.rs index 625e8babd..b66cd8016 100644 --- a/updater/src/updater.rs +++ b/updater/src/updater.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp; use std::fs; diff --git a/util/EIP-152/benches/bench.rs b/util/EIP-152/benches/bench.rs index cb4126983..922f04395 100644 --- a/util/EIP-152/benches/bench.rs +++ b/util/EIP-152/benches/bench.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use criterion::{Criterion, criterion_group, criterion_main, black_box, Throughput, BenchmarkId}; @@ -188,4 +188,4 @@ pub fn portable_benchmark(c: &mut Criterion) { } criterion_group!(benches, avx_benchmark, avx_ifunc_benchmark, portable_benchmark); -criterion_main!(benches); \ No newline at end of file +criterion_main!(benches); diff --git a/util/EIP-152/src/avx2.rs b/util/EIP-152/src/avx2.rs index 5fa2fcb4f..e8bd0a2af 100644 --- a/util/EIP-152/src/avx2.rs +++ b/util/EIP-152/src/avx2.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! AVX2 implementation of the blake2b compression function. use crate::IV; diff --git a/util/EIP-152/src/lib.rs b/util/EIP-152/src/lib.rs index 32ce9bd1c..5ae158a96 100644 --- a/util/EIP-152/src/lib.rs +++ b/util/EIP-152/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . pub mod portable; #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] diff --git a/util/EIP-152/src/portable.rs b/util/EIP-152/src/portable.rs index 283639475..7af90065f 100644 --- a/util/EIP-152/src/portable.rs +++ b/util/EIP-152/src/portable.rs @@ -1,18 +1,19 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . + //! Portable implementation of the blake2b compress function use crate::{IV, SIGMA}; diff --git a/util/EIP-712/src/eip712.rs b/util/EIP-712/src/eip712.rs index d4ea232b9..f6ed6a13c 100644 --- a/util/EIP-712/src/eip712.rs +++ b/util/EIP-712/src/eip712.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! EIP712 structs use serde_json::{Value}; diff --git a/util/EIP-712/src/encode.rs b/util/EIP-712/src/encode.rs index a9888d699..2b0b78b8f 100644 --- a/util/EIP-712/src/encode.rs +++ b/util/EIP-712/src/encode.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! EIP712 Encoder use ethabi::{encode, Token as EthAbiToken}; diff --git a/util/EIP-712/src/error.rs b/util/EIP-712/src/error.rs index ed7db1a9e..b512d4eb3 100644 --- a/util/EIP-712/src/error.rs +++ b/util/EIP-712/src/error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::fmt::{self, Display}; use failure::{Fail, Context, Backtrace}; diff --git a/util/EIP-712/src/lib.rs b/util/EIP-712/src/lib.rs index 064e87755..881a1cac1 100644 --- a/util/EIP-712/src/lib.rs +++ b/util/EIP-712/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! EIP-712 encoding utilities //! diff --git a/util/EIP-712/src/parser.rs b/util/EIP-712/src/parser.rs index b87dd12f8..dfddcef5a 100644 --- a/util/EIP-712/src/parser.rs +++ b/util/EIP-712/src/parser.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Solidity type-name parsing use lunarity_lexer::{Lexer, Token}; diff --git a/util/bloom/src/lib.rs b/util/bloom/src/lib.rs index c7f3f1737..35aab538b 100644 --- a/util/bloom/src/lib.rs +++ b/util/bloom/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{cmp, mem, f64}; use std::hash::{Hash, Hasher}; diff --git a/util/blooms-db/benches/blooms.rs b/util/blooms-db/benches/blooms.rs index 2b624ca78..2a6734580 100644 --- a/util/blooms-db/benches/blooms.rs +++ b/util/blooms-db/benches/blooms.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #[macro_use] extern crate criterion; diff --git a/util/blooms-db/src/db.rs b/util/blooms-db/src/db.rs index d2ed13de2..e50f41ea7 100644 --- a/util/blooms-db/src/db.rs +++ b/util/blooms-db/src/db.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{error, io, fmt}; use std::path::{Path, PathBuf}; diff --git a/util/blooms-db/src/file.rs b/util/blooms-db/src/file.rs index a3f01e9b9..e8ef1f9c0 100644 --- a/util/blooms-db/src/file.rs +++ b/util/blooms-db/src/file.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::io::{Seek, SeekFrom, Write, Read}; use std::path::Path; diff --git a/util/blooms-db/src/lib.rs b/util/blooms-db/src/lib.rs index 8c67bbca2..278cba544 100644 --- a/util/blooms-db/src/lib.rs +++ b/util/blooms-db/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Ethereum blooms database diff --git a/util/dir/src/helpers.rs b/util/dir/src/helpers.rs index 46ee069f2..7cdf35650 100644 --- a/util/dir/src/helpers.rs +++ b/util/dir/src/helpers.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Directory helper functions use ::home_dir; diff --git a/util/dir/src/lib.rs b/util/dir/src/lib.rs index 461c97697..1e0e9daf8 100644 --- a/util/dir/src/lib.rs +++ b/util/dir/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #![warn(missing_docs)] diff --git a/util/fake-fetch/src/lib.rs b/util/fake-fetch/src/lib.rs index e7df95c63..d4b5a1cb1 100644 --- a/util/fake-fetch/src/lib.rs +++ b/util/fake-fetch/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate fetch; extern crate hyper; diff --git a/util/fastmap/src/lib.rs b/util/fastmap/src/lib.rs index 0cbe46fa8..e8a17da0d 100644 --- a/util/fastmap/src/lib.rs +++ b/util/fastmap/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Provides a `H256FastMap` type with H256 keys and fast hashing function. diff --git a/util/fetch/src/client.rs b/util/fetch/src/client.rs index cb6767e3f..6143d1872 100644 --- a/util/fetch/src/client.rs +++ b/util/fetch/src/client.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use futures::future::{self, Loop}; use futures::sync::{mpsc, oneshot}; diff --git a/util/fetch/src/lib.rs b/util/fetch/src/lib.rs index c91be1480..12e0c40aa 100644 --- a/util/fetch/src/lib.rs +++ b/util/fetch/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! A service to fetch any HTTP / HTTPS content. diff --git a/util/io/src/lib.rs b/util/io/src/lib.rs index 90e8d9fb0..c2c1c5591 100644 --- a/util/io/src/lib.rs +++ b/util/io/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! General IO module. //! diff --git a/util/io/src/service_mio.rs b/util/io/src/service_mio.rs index 02eeb7bb6..b04ed4148 100644 --- a/util/io/src/service_mio.rs +++ b/util/io/src/service_mio.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::HashMap; use std::sync::{Arc, Weak}; diff --git a/util/io/src/service_non_mio.rs b/util/io/src/service_non_mio.rs index 1620e944c..239181709 100644 --- a/util/io/src/service_non_mio.rs +++ b/util/io/src/service_non_mio.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::{Arc, Weak}; use std::thread; diff --git a/util/io/src/worker.rs b/util/io/src/worker.rs index afab946b4..f8f8e5434 100644 --- a/util/io/src/worker.rs +++ b/util/io/src/worker.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{ sync::{Arc, atomic::{AtomicBool, Ordering as AtomicOrdering}}, diff --git a/util/journaldb/src/archivedb.rs b/util/journaldb/src/archivedb.rs index 31685fcd5..0da2dac0c 100644 --- a/util/journaldb/src/archivedb.rs +++ b/util/journaldb/src/archivedb.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Disk-backed `HashDB` implementation. diff --git a/util/journaldb/src/as_hash_db_impls.rs b/util/journaldb/src/as_hash_db_impls.rs index 64f4b399f..bde67e5e4 100644 --- a/util/journaldb/src/as_hash_db_impls.rs +++ b/util/journaldb/src/as_hash_db_impls.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Impls of the `AsHashDB` upcast trait for all different variants of DB use hash_db::{HashDB, AsHashDB}; diff --git a/util/journaldb/src/earlymergedb.rs b/util/journaldb/src/earlymergedb.rs index 034d1a248..9fc873db1 100644 --- a/util/journaldb/src/earlymergedb.rs +++ b/util/journaldb/src/earlymergedb.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Disk-backed `HashDB` implementation. diff --git a/util/journaldb/src/lib.rs b/util/journaldb/src/lib.rs index 7163d18cb..b2dea0b20 100644 --- a/util/journaldb/src/lib.rs +++ b/util/journaldb/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! `JournalDB` interface and implementation. diff --git a/util/journaldb/src/overlaydb.rs b/util/journaldb/src/overlaydb.rs index 203702a28..b3d26ab37 100644 --- a/util/journaldb/src/overlaydb.rs +++ b/util/journaldb/src/overlaydb.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Disk-backed `HashDB` implementation. diff --git a/util/journaldb/src/overlayrecentdb.rs b/util/journaldb/src/overlayrecentdb.rs index 32940889b..11643fdac 100644 --- a/util/journaldb/src/overlayrecentdb.rs +++ b/util/journaldb/src/overlayrecentdb.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! `JournalDB` over in-memory overlay diff --git a/util/journaldb/src/refcounteddb.rs b/util/journaldb/src/refcounteddb.rs index b6ad7df50..891c3c586 100644 --- a/util/journaldb/src/refcounteddb.rs +++ b/util/journaldb/src/refcounteddb.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Disk-backed, ref-counted `JournalDB` implementation. diff --git a/util/journaldb/src/util.rs b/util/journaldb/src/util.rs index f615f41a4..870596c65 100644 --- a/util/journaldb/src/util.rs +++ b/util/journaldb/src/util.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use ethereum_types::H256; use rlp::{RlpStream, Encodable, Rlp, DecoderError}; diff --git a/util/keccak-hasher/src/lib.rs b/util/keccak-hasher/src/lib.rs index f72876e73..4bdae483a 100644 --- a/util/keccak-hasher/src/lib.rs +++ b/util/keccak-hasher/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Hasher implementation for the Keccak-256 hash diff --git a/util/len-caching-lock/src/lib.rs b/util/len-caching-lock/src/lib.rs index f43e7f995..cea8ab481 100644 --- a/util/len-caching-lock/src/lib.rs +++ b/util/len-caching-lock/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! This crate allows automatic caching of `T.len()` with an api that //! allows drop in replacement for `parking_lot` diff --git a/util/len-caching-lock/src/mutex.rs b/util/len-caching-lock/src/mutex.rs index 8f401823c..9399f7c12 100644 --- a/util/len-caching-lock/src/mutex.rs +++ b/util/len-caching-lock/src/mutex.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::ops::{Deref, DerefMut}; use std::sync::atomic::AtomicUsize; diff --git a/util/len-caching-lock/src/rwlock.rs b/util/len-caching-lock/src/rwlock.rs index 661b4ae1a..32d843c26 100644 --- a/util/len-caching-lock/src/rwlock.rs +++ b/util/len-caching-lock/src/rwlock.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::ops::{Deref, DerefMut}; use std::sync::atomic::AtomicUsize; diff --git a/util/memory-cache/src/lib.rs b/util/memory-cache/src/lib.rs index 3ea8cab18..46faa83c9 100644 --- a/util/memory-cache/src/lib.rs +++ b/util/memory-cache/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Lru-cache related utilities as quick-and-dirty wrappers around the lru-cache //! crate. diff --git a/util/migration-rocksdb/src/lib.rs b/util/migration-rocksdb/src/lib.rs index 169732a79..6384b9f55 100644 --- a/util/migration-rocksdb/src/lib.rs +++ b/util/migration-rocksdb/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! DB Migration module. diff --git a/util/migration-rocksdb/tests/tests.rs b/util/migration-rocksdb/tests/tests.rs index 4d3b33283..4aa10a16f 100644 --- a/util/migration-rocksdb/tests/tests.rs +++ b/util/migration-rocksdb/tests/tests.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Tests for migrations. //! A random temp directory is created. A database is created within it, and migrations diff --git a/util/network-devp2p/src/connection.rs b/util/network-devp2p/src/connection.rs index 2f88efb2d..9b72f0c0e 100644 --- a/util/network-devp2p/src/connection.rs +++ b/util/network-devp2p/src/connection.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::VecDeque; use std::io::{self, Cursor, Read, Write}; diff --git a/util/network-devp2p/src/discovery.rs b/util/network-devp2p/src/discovery.rs index a468b04fc..49b5b6ec9 100644 --- a/util/network-devp2p/src/discovery.rs +++ b/util/network-devp2p/src/discovery.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::collections::{HashMap, HashSet, VecDeque}; use std::collections::hash_map::Entry; diff --git a/util/network-devp2p/src/handshake.rs b/util/network-devp2p/src/handshake.rs index b869db41d..15639d3dd 100644 --- a/util/network-devp2p/src/handshake.rs +++ b/util/network-devp2p/src/handshake.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::time::Duration; diff --git a/util/network-devp2p/src/host.rs b/util/network-devp2p/src/host.rs index 103c76f7a..0d4e422f0 100644 --- a/util/network-devp2p/src/host.rs +++ b/util/network-devp2p/src/host.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::cmp::{max, min}; use std::collections::{HashMap, HashSet}; diff --git a/util/network-devp2p/src/ip_utils.rs b/util/network-devp2p/src/ip_utils.rs index 630072b39..d99388a22 100644 --- a/util/network-devp2p/src/ip_utils.rs +++ b/util/network-devp2p/src/ip_utils.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . // Based on original work by David Levy https://raw.githubusercontent.com/dlevy47/rust-interfaces diff --git a/util/network-devp2p/src/lib.rs b/util/network-devp2p/src/lib.rs index 94bd0af61..23ab0ad08 100644 --- a/util/network-devp2p/src/lib.rs +++ b/util/network-devp2p/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Network and general IO module. //! diff --git a/util/network-devp2p/src/node_table.rs b/util/network-devp2p/src/node_table.rs index 43e77999b..3eaaaeb37 100644 --- a/util/network-devp2p/src/node_table.rs +++ b/util/network-devp2p/src/node_table.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{fs, slice}; use std::collections::{HashMap, HashSet}; diff --git a/util/network-devp2p/src/service.rs b/util/network-devp2p/src/service.rs index 7a67590fb..73b4025fe 100644 --- a/util/network-devp2p/src/service.rs +++ b/util/network-devp2p/src/service.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::net::SocketAddr; use std::ops::RangeInclusive; diff --git a/util/network-devp2p/src/session.rs b/util/network-devp2p/src/session.rs index b6369548d..869277524 100644 --- a/util/network-devp2p/src/session.rs +++ b/util/network-devp2p/src/session.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{io, str}; use std::collections::HashMap; diff --git a/util/network-devp2p/tests/tests.rs b/util/network-devp2p/tests/tests.rs index a8bf6309a..81d16c999 100644 --- a/util/network-devp2p/tests/tests.rs +++ b/util/network-devp2p/tests/tests.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::sync::{ Arc, diff --git a/util/network/src/client_version.rs b/util/network/src/client_version.rs index 7b6f68be8..515925d04 100644 --- a/util/network/src/client_version.rs +++ b/util/network/src/client_version.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #![warn(missing_docs)] diff --git a/util/network/src/connection_filter.rs b/util/network/src/connection_filter.rs index c89152c3c..c1283e586 100644 --- a/util/network/src/connection_filter.rs +++ b/util/network/src/connection_filter.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Connection filter trait. diff --git a/util/network/src/error.rs b/util/network/src/error.rs index 8b46ea4a2..9a1f9c7bc 100644 --- a/util/network/src/error.rs +++ b/util/network/src/error.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::{error, io, net, fmt}; use libc::{ENFILE, EMFILE}; diff --git a/util/network/src/lib.rs b/util/network/src/lib.rs index 40e2ec3a0..bdfd0a2bf 100644 --- a/util/network/src/lib.rs +++ b/util/network/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . #![recursion_limit="128"] diff --git a/util/panic-hook/src/lib.rs b/util/panic-hook/src/lib.rs index a127c0610..c02babba3 100644 --- a/util/panic-hook/src/lib.rs +++ b/util/panic-hook/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Custom panic hook with bug report link diff --git a/util/patricia-trie-ethereum/benches/rlp_node_codec.rs b/util/patricia-trie-ethereum/benches/rlp_node_codec.rs index dcd27aa5e..d55b8b1bf 100644 --- a/util/patricia-trie-ethereum/benches/rlp_node_codec.rs +++ b/util/patricia-trie-ethereum/benches/rlp_node_codec.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Benchmarking RlpNodeCodec decoding performance diff --git a/util/patricia-trie-ethereum/src/lib.rs b/util/patricia-trie-ethereum/src/lib.rs index 6c54434f3..e3b04090e 100644 --- a/util/patricia-trie-ethereum/src/lib.rs +++ b/util/patricia-trie-ethereum/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Façade crate for `patricia_trie` for Ethereum specific impls diff --git a/util/patricia-trie-ethereum/src/rlp_node_codec.rs b/util/patricia-trie-ethereum/src/rlp_node_codec.rs index 639b852ed..d7c9b5783 100644 --- a/util/patricia-trie-ethereum/src/rlp_node_codec.rs +++ b/util/patricia-trie-ethereum/src/rlp_node_codec.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! `NodeCodec` implementation for Rlp diff --git a/util/registrar/src/lib.rs b/util/registrar/src/lib.rs index ccdec154e..67161df13 100644 --- a/util/registrar/src/lib.rs +++ b/util/registrar/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate call_contract; extern crate ethabi; diff --git a/util/registrar/src/registrar.rs b/util/registrar/src/registrar.rs index 5d247b47c..e9726b952 100644 --- a/util/registrar/src/registrar.rs +++ b/util/registrar/src/registrar.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use call_contract::CallContract; use ethabi::Address; diff --git a/util/rlp-compress/tests/compress.rs b/util/rlp-compress/tests/compress.rs index a65350f32..01327ec9a 100644 --- a/util/rlp-compress/tests/compress.rs +++ b/util/rlp-compress/tests/compress.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate rlp_compress; diff --git a/util/stats/src/lib.rs b/util/stats/src/lib.rs index ccebcbb94..fa56bf273 100644 --- a/util/stats/src/lib.rs +++ b/util/stats/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Statistical functions and helpers. diff --git a/util/time-utils/src/lib.rs b/util/time-utils/src/lib.rs index 85aad4afc..32de2edad 100644 --- a/util/time-utils/src/lib.rs +++ b/util/time-utils/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . use std::time::{Duration, SystemTime, UNIX_EPOCH}; diff --git a/util/triehash-ethereum/src/lib.rs b/util/triehash-ethereum/src/lib.rs index 27b378147..cea7eef76 100644 --- a/util/triehash-ethereum/src/lib.rs +++ b/util/triehash-ethereum/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Generates Keccak-flavoured trie roots. diff --git a/util/unexpected/src/lib.rs b/util/unexpected/src/lib.rs index e720f1e1e..0727f12be 100644 --- a/util/unexpected/src/lib.rs +++ b/util/unexpected/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Error utils diff --git a/util/version/build.rs b/util/version/build.rs index 5ee2ef46d..fcfba5f94 100644 --- a/util/version/build.rs +++ b/util/version/build.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . extern crate rustc_version; extern crate toml; diff --git a/util/version/src/lib.rs b/util/version/src/lib.rs index 6b0ac6b73..d9fb8e201 100644 --- a/util/version/src/lib.rs +++ b/util/version/src/lib.rs @@ -1,18 +1,18 @@ // Copyright 2015-2020 Parity Technologies (UK) Ltd. -// This file is part of Parity Ethereum. +// This file is part of Open Ethereum. -// Parity Ethereum is free software: you can redistribute it and/or modify +// Open Ethereum 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. -// Parity Ethereum is distributed in the hope that it will be useful, +// Open Ethereum 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 Parity Ethereum. If not, see . +// along with Open Ethereum. If not, see . //! Parity version specific information.