aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2015-07-24 00:35:11 +0800
committerFelix Lange <fjl@twurst.com>2015-07-24 00:35:11 +0800
commitbfbcfbe4a9dd9125391b56d6a13158cc5ec71c89 (patch)
treeacefef19e7366d49d30665a1574411fd717b6c84 /eth
parent0428cae226ff4910227ded0608f7e7f1c9b4df37 (diff)
downloadgo-tangerine-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar
go-tangerine-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.gz
go-tangerine-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.bz2
go-tangerine-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.lz
go-tangerine-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.xz
go-tangerine-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.zst
go-tangerine-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.zip
all: fix license headers one more time
I forgot to update one instance of "go-ethereum" in commit 3f047be5a.
Diffstat (limited to 'eth')
-rw-r--r--eth/backend.go2
-rw-r--r--eth/downloader/downloader.go2
-rw-r--r--eth/downloader/downloader_test.go2
-rw-r--r--eth/downloader/events.go2
-rw-r--r--eth/downloader/peer.go2
-rw-r--r--eth/downloader/queue.go2
-rw-r--r--eth/fetcher/fetcher.go2
-rw-r--r--eth/fetcher/fetcher_test.go2
-rw-r--r--eth/fetcher/metrics.go2
-rw-r--r--eth/gasprice.go2
-rw-r--r--eth/handler.go2
-rw-r--r--eth/metrics.go2
-rw-r--r--eth/peer.go2
-rw-r--r--eth/protocol.go2
-rw-r--r--eth/protocol_test.go2
-rw-r--r--eth/sync.go2
16 files changed, 16 insertions, 16 deletions
diff --git a/eth/backend.go b/eth/backend.go
index 82e57c75b..4bc00edde 100644
--- a/eth/backend.go
+++ b/eth/backend.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/eth/downloader/downloader.go b/eth/downloader/downloader.go
index 7b0cd86b8..4c8b2e8d0 100644
--- a/eth/downloader/downloader.go
+++ b/eth/downloader/downloader.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/eth/downloader/downloader_test.go b/eth/downloader/downloader_test.go
index 993b64dda..8299dd62c 100644
--- a/eth/downloader/downloader_test.go
+++ b/eth/downloader/downloader_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.
diff --git a/eth/downloader/events.go b/eth/downloader/events.go
index cd2ffdad5..64905b8f2 100644
--- a/eth/downloader/events.go
+++ b/eth/downloader/events.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/eth/downloader/peer.go b/eth/downloader/peer.go
index 28922c683..4273b9168 100644
--- a/eth/downloader/peer.go
+++ b/eth/downloader/peer.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/eth/downloader/queue.go b/eth/downloader/queue.go
index a84509a9b..96e08e144 100644
--- a/eth/downloader/queue.go
+++ b/eth/downloader/queue.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/eth/fetcher/fetcher.go b/eth/fetcher/fetcher.go
index 1f02aab6e..55b6c5c1c 100644
--- a/eth/fetcher/fetcher.go
+++ b/eth/fetcher/fetcher.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/eth/fetcher/fetcher_test.go b/eth/fetcher/fetcher_test.go
index 4670713b2..499d6d546 100644
--- a/eth/fetcher/fetcher_test.go
+++ b/eth/fetcher/fetcher_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.
diff --git a/eth/fetcher/metrics.go b/eth/fetcher/metrics.go
index 08941c255..76cc49226 100644
--- a/eth/fetcher/metrics.go
+++ b/eth/fetcher/metrics.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/eth/gasprice.go b/eth/gasprice.go
index ae679c676..031098e9a 100644
--- a/eth/gasprice.go
+++ b/eth/gasprice.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/eth/handler.go b/eth/handler.go
index 5ea9a3fdb..f427854ac 100644
--- a/eth/handler.go
+++ b/eth/handler.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/eth/metrics.go b/eth/metrics.go
index 2ec6e47d9..625b90b67 100644
--- a/eth/metrics.go
+++ b/eth/metrics.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/eth/peer.go b/eth/peer.go
index f06dbea72..ade1f37ea 100644
--- a/eth/peer.go
+++ b/eth/peer.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/eth/protocol.go b/eth/protocol.go
index 5e2454999..0bc845660 100644
--- a/eth/protocol.go
+++ b/eth/protocol.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/eth/protocol_test.go b/eth/protocol_test.go
index 7dcbc714c..c01f59691 100644
--- a/eth/protocol_test.go
+++ b/eth/protocol_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/eth/sync.go b/eth/sync.go
index 5d1c066a2..a69bd6c69 100644
--- a/eth/sync.go
+++ b/eth/sync.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.