aboutsummaryrefslogtreecommitdiffstats
path: root/les
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2019-07-22 17:17:27 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-07-22 17:17:27 +0800
commit1a83114c74b66c13b025e4a7df1c45e7ade42e05 (patch)
treebba60d1f3d1678211ea691be27ca86592e0f2c26 /les
parent364e485e5134843c9f6abc0ff51096bb4c8655c8 (diff)
downloadgo-tangerine-1a83114c74b66c13b025e4a7df1c45e7ade42e05.tar
go-tangerine-1a83114c74b66c13b025e4a7df1c45e7ade42e05.tar.gz
go-tangerine-1a83114c74b66c13b025e4a7df1c45e7ade42e05.tar.bz2
go-tangerine-1a83114c74b66c13b025e4a7df1c45e7ade42e05.tar.lz
go-tangerine-1a83114c74b66c13b025e4a7df1c45e7ade42e05.tar.xz
go-tangerine-1a83114c74b66c13b025e4a7df1c45e7ade42e05.tar.zst
go-tangerine-1a83114c74b66c13b025e4a7df1c45e7ade42e05.zip
all: update author list and licenses
Diffstat (limited to 'les')
-rw-r--r--les/api.go2
-rw-r--r--les/api_test.go2
-rw-r--r--les/benchmark.go2
-rw-r--r--les/costtracker.go4
-rw-r--r--les/fetcher_test.go16
-rw-r--r--les/flowcontrol/logger.go2
-rw-r--r--les/flowcontrol/manager.go2
-rw-r--r--les/flowcontrol/manager_test.go2
-rw-r--r--les/freeclient.go2
-rw-r--r--les/freeclient_test.go2
-rw-r--r--les/peer_test.go16
-rw-r--r--les/servingqueue.go2
-rw-r--r--les/sync_test.go2
-rw-r--r--les/ulc_test.go2
14 files changed, 45 insertions, 13 deletions
diff --git a/les/api.go b/les/api.go
index 95e1b009e..e20f72cad 100644
--- a/les/api.go
+++ b/les/api.go
@@ -1,4 +1,4 @@
-// Copyright 2018 The go-ethereum Authors
+// Copyright 2019 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
diff --git a/les/api_test.go b/les/api_test.go
index 6db9e5417..8b39a4e17 100644
--- a/les/api_test.go
+++ b/les/api_test.go
@@ -1,4 +1,4 @@
-// Copyright 2016 The go-ethereum Authors
+// Copyright 2019 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
diff --git a/les/benchmark.go b/les/benchmark.go
index 925d1d89e..74dfcf7c9 100644
--- a/les/benchmark.go
+++ b/les/benchmark.go
@@ -1,4 +1,4 @@
-// Copyright 2018 The go-ethereum Authors
+// Copyright 2019 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
diff --git a/les/costtracker.go b/les/costtracker.go
index 61b076d15..d1bb172e4 100644
--- a/les/costtracker.go
+++ b/les/costtracker.go
@@ -1,4 +1,4 @@
-// Copyright 2016 The go-ethereum Authors
+// Copyright 2019 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
@@ -9,7 +9,7 @@
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU Lesser General Public License for more detailct.
+// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
diff --git a/les/fetcher_test.go b/les/fetcher_test.go
index 2ac72ddf7..c6faabd66 100644
--- a/les/fetcher_test.go
+++ b/les/fetcher_test.go
@@ -1,3 +1,19 @@
+// Copyright 2019 The go-ethereum Authors
+// This file is part of the go-ethereum library.
+//
+// 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.
+//
+// The go-ethereum library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
+
package les
import (
diff --git a/les/flowcontrol/logger.go b/les/flowcontrol/logger.go
index fcd1285a5..428d7fbf2 100644
--- a/les/flowcontrol/logger.go
+++ b/les/flowcontrol/logger.go
@@ -1,4 +1,4 @@
-// Copyright 2018 The go-ethereum Authors
+// Copyright 2019 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
diff --git a/les/flowcontrol/manager.go b/les/flowcontrol/manager.go
index 68f1a47c9..d6d0b1add 100644
--- a/les/flowcontrol/manager.go
+++ b/les/flowcontrol/manager.go
@@ -1,4 +1,4 @@
-// Copyright 2018 The go-ethereum Authors
+// Copyright 2016 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
diff --git a/les/flowcontrol/manager_test.go b/les/flowcontrol/manager_test.go
index b32ec5599..9d2f88763 100644
--- a/les/flowcontrol/manager_test.go
+++ b/les/flowcontrol/manager_test.go
@@ -1,4 +1,4 @@
-// Copyright 2018 The go-ethereum Authors
+// Copyright 2019 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
diff --git a/les/freeclient.go b/les/freeclient.go
index 934b88153..08613e6ce 100644
--- a/les/freeclient.go
+++ b/les/freeclient.go
@@ -1,4 +1,4 @@
-// Copyright 2016 The go-ethereum Authors
+// Copyright 2018 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
diff --git a/les/freeclient_test.go b/les/freeclient_test.go
index 191822264..5c4f58560 100644
--- a/les/freeclient_test.go
+++ b/les/freeclient_test.go
@@ -1,4 +1,4 @@
-// Copyright 2017 The go-ethereum Authors
+// Copyright 2018 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
diff --git a/les/peer_test.go b/les/peer_test.go
index 85de7cded..ba8a79fe2 100644
--- a/les/peer_test.go
+++ b/les/peer_test.go
@@ -1,3 +1,19 @@
+// Copyright 2019 The go-ethereum Authors
+// This file is part of the go-ethereum library.
+//
+// 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.
+//
+// The go-ethereum library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public License
+// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
+
package les
import (
diff --git a/les/servingqueue.go b/les/servingqueue.go
index a9e8369fe..8842cf9e9 100644
--- a/les/servingqueue.go
+++ b/les/servingqueue.go
@@ -1,4 +1,4 @@
-// Copyright 2018 The go-ethereum Authors
+// Copyright 2019 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
diff --git a/les/sync_test.go b/les/sync_test.go
index f5d1ad5bc..3a75d6856 100644
--- a/les/sync_test.go
+++ b/les/sync_test.go
@@ -1,4 +1,4 @@
-// Copyright 2018 The go-ethereum Authors
+// Copyright 2019 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
diff --git a/les/ulc_test.go b/les/ulc_test.go
index cd2bedae8..7e9f0b6db 100644
--- a/les/ulc_test.go
+++ b/les/ulc_test.go
@@ -1,4 +1,4 @@
-// Copyright 2019 The go-ethereum Authors
+// Copyright 2018 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify