bitcoin: Remove attribution from all files
Currently we have a mishmash of attribution lines accompanying the SPDX identifier. These lines are basically meaningless because: - The date is often wrong - The original author attributed is not the only contributor to a file - The term "rust bitcoin developers" is basically just noise Just remove all the attribution lines and be done with it. While we are at it add an SPDX line to the few files missing it, whether this license nonsense is even needed is left as an argument for another day.
This commit is contained in:
parent
ca7c60a09d
commit
984fe69448
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin addresses.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Base58 encoder and decoder.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2019 by Tammas Blummer.
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
// This module was largely copied from https://github.com/rust-bitcoin/murmel/blob/master/src/blockfilter.rs
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! BIP32 implementation.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin blocks.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Blockdata constants.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Implements `FeeRate` and assoctiated features.
|
||||
|
||||
use core::fmt;
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Rust Bitcoin Library - Written by the rust-bitcoin developers.
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Provides type [`LockTime`] that implements the logic around nLockTime/OP_CHECKLOCKTIMEVERIFY.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Rust Bitcoin Library - Written by the rust-bitcoin developers.
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Provides absolute and relative locktimes.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Rust Bitcoin Library - Written by the rust-bitcoin developers.
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Provides type [`LockTime`] that implements the logic around nSequence/OP_CHECKSEQUENCEVERIFY.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin block data.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin script opcodes.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
use core::convert::{TryFrom, TryInto};
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
#[cfg(feature = "bitcoinconsensus")]
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
use core::convert::TryInto;
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin scripts.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
#[cfg(doc)]
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Contains `PushBytes` & co
|
||||
|
||||
use core::borrow::{Borrow, BorrowMut};
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
use core::str::FromStr;
|
||||
|
||||
use hashes::Hash;
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin transactions.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Implements `Weight` and associated features.
|
||||
|
||||
use core::fmt;
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin consensus-encodable types.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin consensus parameters.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Serde serialization via consensus encoding
|
||||
//!
|
||||
//! This provides functions for (de)serializing any type as consensus-encoded bytes.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! ECDSA Bitcoin signatures.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin keys.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Rust Bitcoin Library - Written by the rust-bitcoin developers.
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Cryptography
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin taproot keys.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Contains error types and other error handling tools.
|
||||
|
||||
use core::fmt;
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin hash types.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Internal macros.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! # Rust Bitcoin Library
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written by John L. Jegutanis
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
//
|
||||
// This code was translated from merkleblock.h, merkleblock.cpp and pmt_tests.cpp
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin merkle tree functions.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin network addresses.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin network constants.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin network messages.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin blockdata network messages.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//!
|
||||
//! BIP152 Compact Blocks network messages
|
||||
//!
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin network-related network messages.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin network support.
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
use core::convert::TryFrom;
|
||||
use core::fmt;
|
||||
use core::str::FromStr;
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin policy.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Rust Bitcoin Library - Written by the rust-bitcoin developers.
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Proof-of-work related integer types.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Signature
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Bitcoin serde macros.
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
// Written in 2014 by Andrew Poelstra <apoelstra@wpsoftware.net>
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
//! Utility functions.
|
||||
|
|
Loading…
Reference in New Issue