aboutsummaryrefslogtreecommitdiffstats
path: root/whisper
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 /whisper
parent0428cae226ff4910227ded0608f7e7f1c9b4df37 (diff)
downloaddexon-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar
dexon-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.gz
dexon-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.bz2
dexon-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.lz
dexon-bfbcfbe4a9dd9125391b56d6a13158cc5ec71c89.tar.xz
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 'whisper')
-rw-r--r--whisper/doc.go2
-rw-r--r--whisper/envelope.go2
-rw-r--r--whisper/envelope_test.go2
-rw-r--r--whisper/filter.go2
-rw-r--r--whisper/filter_test.go2
-rw-r--r--whisper/main.go2
-rw-r--r--whisper/message.go2
-rw-r--r--whisper/message_test.go2
-rw-r--r--whisper/peer.go2
-rw-r--r--whisper/peer_test.go2
-rw-r--r--whisper/topic.go2
-rw-r--r--whisper/topic_test.go2
-rw-r--r--whisper/whisper.go2
-rw-r--r--whisper/whisper_test.go2
14 files changed, 14 insertions, 14 deletions
diff --git a/whisper/doc.go b/whisper/doc.go
index b47948060..cfb0b5117 100644
--- a/whisper/doc.go
+++ b/whisper/doc.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/whisper/envelope.go b/whisper/envelope.go
index ef4bf0f8e..b231c6b44 100644
--- a/whisper/envelope.go
+++ b/whisper/envelope.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/whisper/envelope_test.go b/whisper/envelope_test.go
index 155571834..3bfe52737 100644
--- a/whisper/envelope_test.go
+++ b/whisper/envelope_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/whisper/filter.go b/whisper/filter.go
index bb58b579d..9f6d6b781 100644
--- a/whisper/filter.go
+++ b/whisper/filter.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/whisper/filter_test.go b/whisper/filter_test.go
index ab4bce255..b805b2baf 100644
--- a/whisper/filter_test.go
+++ b/whisper/filter_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/whisper/main.go b/whisper/main.go
index acbab6eed..be4160489 100644
--- a/whisper/main.go
+++ b/whisper/main.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/whisper/message.go b/whisper/message.go
index faba84fe6..506f142ed 100644
--- a/whisper/message.go
+++ b/whisper/message.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/whisper/message_test.go b/whisper/message_test.go
index 3a95297ba..6ff95efff 100644
--- a/whisper/message_test.go
+++ b/whisper/message_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/whisper/peer.go b/whisper/peer.go
index 9fa50d65e..ee10e66e7 100644
--- a/whisper/peer.go
+++ b/whisper/peer.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/whisper/peer_test.go b/whisper/peer_test.go
index 7fdb9f71b..594671ee1 100644
--- a/whisper/peer_test.go
+++ b/whisper/peer_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/whisper/topic.go b/whisper/topic.go
index ba17fdfcb..7ac3e8dc1 100644
--- a/whisper/topic.go
+++ b/whisper/topic.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/whisper/topic_test.go b/whisper/topic_test.go
index e86b4f543..9c45f6740 100644
--- a/whisper/topic_test.go
+++ b/whisper/topic_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/whisper/whisper.go b/whisper/whisper.go
index 243f6222f..676d8ae7a 100644
--- a/whisper/whisper.go
+++ b/whisper/whisper.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/whisper/whisper_test.go b/whisper/whisper_test.go
index abd35317a..b5a919984 100644
--- a/whisper/whisper_test.go
+++ b/whisper/whisper_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.