aboutsummaryrefslogtreecommitdiffstats
path: root/core/state
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 /core/state
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 'core/state')
-rw-r--r--core/state/dump.go2
-rw-r--r--core/state/errors.go2
-rw-r--r--core/state/log.go2
-rw-r--r--core/state/main_test.go2
-rw-r--r--core/state/managed_state.go2
-rw-r--r--core/state/managed_state_test.go2
-rw-r--r--core/state/state_object.go2
-rw-r--r--core/state/state_test.go2
-rw-r--r--core/state/statedb.go2
9 files changed, 9 insertions, 9 deletions
diff --git a/core/state/dump.go b/core/state/dump.go
index 6b5e40565..9acb8a024 100644
--- a/core/state/dump.go
+++ b/core/state/dump.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/core/state/errors.go b/core/state/errors.go
index 343567b18..a08ed2d23 100644
--- a/core/state/errors.go
+++ b/core/state/errors.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/core/state/log.go b/core/state/log.go
index 67450c689..5d7d7357d 100644
--- a/core/state/log.go
+++ b/core/state/log.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/core/state/main_test.go b/core/state/main_test.go
index 38b62df02..cd9661031 100644
--- a/core/state/main_test.go
+++ b/core/state/main_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/core/state/managed_state.go b/core/state/managed_state.go
index 13535a405..4df047979 100644
--- a/core/state/managed_state.go
+++ b/core/state/managed_state.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/core/state/managed_state_test.go b/core/state/managed_state_test.go
index a751e04bc..58e77d842 100644
--- a/core/state/managed_state_test.go
+++ b/core/state/managed_state_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/core/state/state_object.go b/core/state/state_object.go
index e366444db..3d4f0b376 100644
--- a/core/state/state_object.go
+++ b/core/state/state_object.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/core/state/state_test.go b/core/state/state_test.go
index a2cab025e..5972d266a 100644
--- a/core/state/state_test.go
+++ b/core/state/state_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/core/state/statedb.go b/core/state/statedb.go
index f438fc00b..f481c8ab3 100644
--- a/core/state/statedb.go
+++ b/core/state/statedb.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.