aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-07-28 19:29:42 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-07-28 19:29:42 +0800
commit1fad8798ec043b9b829caea96dd7a2c5e7b1ed36 (patch)
tree8ff1d0588ec33c9d3d2f0a031fe92daa33fb8c14 /eth
parent572e78cee056951c12cfc1c941b48b0fcc1ed6ed (diff)
parentcd657b98780a74d08c110291dcf8d1183b64be15 (diff)
downloadgo-tangerine-1fad8798ec043b9b829caea96dd7a2c5e7b1ed36.tar
go-tangerine-1fad8798ec043b9b829caea96dd7a2c5e7b1ed36.tar.gz
go-tangerine-1fad8798ec043b9b829caea96dd7a2c5e7b1ed36.tar.bz2
go-tangerine-1fad8798ec043b9b829caea96dd7a2c5e7b1ed36.tar.lz
go-tangerine-1fad8798ec043b9b829caea96dd7a2c5e7b1ed36.tar.xz
go-tangerine-1fad8798ec043b9b829caea96dd7a2c5e7b1ed36.tar.zst
go-tangerine-1fad8798ec043b9b829caea96dd7a2c5e7b1ed36.zip
Merge pull request #1515 from fjl/license-fixes
all: fix license headers one more time
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 cba1b3939..dc592e7fc 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 f2ae2b6f7..2bd369901 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 226b98360..b8c9b50d0 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 4a6736b7a..a24d98f69 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.