diff options
author | Felix Lange <fjl@twurst.com> | 2015-07-24 00:35:11 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-07-24 00:35:11 +0800 |
commit | bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89 (patch) | |
tree | acefef19e7366d49d30665a1574411fd717b6c84 /crypto | |
parent | 0428cae226ff4910227ded0608f7e7f1c9b4df37 (diff) | |
download | dexon-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.gz dexon-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.zst dexon-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.zip |
all: fix license headers one more time
I forgot to update one instance of "go-ethereum" in commit 3f047be5a.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/crypto.go | 2 | ||||
-rw-r--r-- | crypto/crypto_test.go | 2 | ||||
-rw-r--r-- | crypto/encrypt_decrypt_test.go | 2 | ||||
-rw-r--r-- | crypto/key.go | 2 | ||||
-rw-r--r-- | crypto/key_store_passphrase.go | 2 | ||||
-rw-r--r-- | crypto/key_store_plain.go | 2 | ||||
-rw-r--r-- | crypto/key_store_test.go | 2 | ||||
-rw-r--r-- | crypto/keypair.go | 2 | ||||
-rw-r--r-- | crypto/mnemonic.go | 2 | ||||
-rw-r--r-- | crypto/mnemonic_test.go | 2 | ||||
-rw-r--r-- | crypto/mnemonic_words.go | 2 | ||||
-rw-r--r-- | crypto/randentropy/rand_entropy.go | 2 | ||||
-rw-r--r-- | crypto/secp256k1/notes.go | 2 | ||||
-rw-r--r-- | crypto/secp256k1/secp256.go | 2 | ||||
-rw-r--r-- | crypto/secp256k1/secp256_test.go | 2 |
15 files changed, 15 insertions, 15 deletions
diff --git a/crypto/crypto.go b/crypto/crypto.go index 1c34f9a7d..a474d6f13 100644 --- a/crypto/crypto.go +++ b/crypto/crypto.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/crypto_test.go b/crypto/crypto_test.go index e68d6e50d..b891f41a9 100644 --- a/crypto/crypto_test.go +++ b/crypto/crypto_test.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/encrypt_decrypt_test.go b/crypto/encrypt_decrypt_test.go index a2d8a2189..fcf40b70f 100644 --- a/crypto/encrypt_decrypt_test.go +++ b/crypto/encrypt_decrypt_test.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/key.go b/crypto/key.go index 994ebe4af..d80b99759 100644 --- a/crypto/key.go +++ b/crypto/key.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/key_store_passphrase.go b/crypto/key_store_passphrase.go index 2198d1af4..f21af8dd9 100644 --- a/crypto/key_store_passphrase.go +++ b/crypto/key_store_passphrase.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/key_store_plain.go b/crypto/key_store_plain.go index bb7a2b7a5..c1c23f8b8 100644 --- a/crypto/key_store_plain.go +++ b/crypto/key_store_plain.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/key_store_test.go b/crypto/key_store_test.go index 8634aad46..fda87ddc8 100644 --- a/crypto/key_store_test.go +++ b/crypto/key_store_test.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/keypair.go b/crypto/keypair.go index 3e600d98a..e070f292f 100644 --- a/crypto/keypair.go +++ b/crypto/keypair.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/mnemonic.go b/crypto/mnemonic.go index ad6207b90..34698926c 100644 --- a/crypto/mnemonic.go +++ b/crypto/mnemonic.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/mnemonic_test.go b/crypto/mnemonic_test.go index 46dfc79ca..07b364a01 100644 --- a/crypto/mnemonic_test.go +++ b/crypto/mnemonic_test.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/mnemonic_words.go b/crypto/mnemonic_words.go index 6127be60e..6b8412e89 100644 --- a/crypto/mnemonic_words.go +++ b/crypto/mnemonic_words.go @@ -1,7 +1,7 @@ // Copyright 2014 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/randentropy/rand_entropy.go b/crypto/randentropy/rand_entropy.go index ec1a20f92..0c2e3c051 100644 --- a/crypto/randentropy/rand_entropy.go +++ b/crypto/randentropy/rand_entropy.go @@ -1,7 +1,7 @@ // Copyright 2015 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/secp256k1/notes.go b/crypto/secp256k1/notes.go index c26079d21..93e6d1902 100644 --- a/crypto/secp256k1/notes.go +++ b/crypto/secp256k1/notes.go @@ -1,7 +1,7 @@ // Copyright 2015 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/secp256k1/secp256.go b/crypto/secp256k1/secp256.go index 88aa32a4b..39cfda607 100644 --- a/crypto/secp256k1/secp256.go +++ b/crypto/secp256k1/secp256.go @@ -1,7 +1,7 @@ // Copyright 2015 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. diff --git a/crypto/secp256k1/secp256_test.go b/crypto/secp256k1/secp256_test.go index 0e4fe5033..deeec98d5 100644 --- a/crypto/secp256k1/secp256_test.go +++ b/crypto/secp256k1/secp256_test.go @@ -1,7 +1,7 @@ // Copyright 2015 The go-ethereum Authors // This file is part of the go-ethereum library. // -// go-ethereum is free software: you can redistribute it and/or modify +// The go-ethereum library is free software: you can redistribute it and/or modify // it under the terms of the GNU Lesser General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. |