aboutsummaryrefslogtreecommitdiffstats
path: root/core
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 /core
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 'core')
-rw-r--r--core/asm.go2
-rw-r--r--core/bad_block.go2
-rw-r--r--core/bench_test.go2
-rw-r--r--core/block_cache.go2
-rw-r--r--core/block_cache_test.go2
-rw-r--r--core/block_processor.go2
-rw-r--r--core/block_processor_test.go2
-rw-r--r--core/blocks.go2
-rw-r--r--core/canary.go2
-rw-r--r--core/chain_makers.go2
-rw-r--r--core/chain_makers_test.go2
-rw-r--r--core/chain_manager.go2
-rw-r--r--core/chain_manager_test.go2
-rw-r--r--core/chain_util.go2
-rw-r--r--core/error.go2
-rw-r--r--core/events.go2
-rw-r--r--core/execution.go2
-rw-r--r--core/fees.go2
-rw-r--r--core/filter.go2
-rw-r--r--core/filter_test.go2
-rw-r--r--core/genesis.go2
-rw-r--r--core/helper_test.go2
-rw-r--r--core/manager.go2
-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
-rw-r--r--core/state_transition.go2
-rw-r--r--core/transaction_pool.go2
-rw-r--r--core/transaction_pool_test.go2
-rw-r--r--core/transaction_util.go2
-rw-r--r--core/types/block.go2
-rw-r--r--core/types/block_test.go2
-rw-r--r--core/types/bloom9.go2
-rw-r--r--core/types/bloom9_test.go2
-rw-r--r--core/types/common.go2
-rw-r--r--core/types/derive_sha.go2
-rw-r--r--core/types/receipt.go2
-rw-r--r--core/types/transaction.go2
-rw-r--r--core/types/transaction_test.go2
-rw-r--r--core/vm/analysis.go2
-rw-r--r--core/vm/asm.go2
-rw-r--r--core/vm/common.go2
-rw-r--r--core/vm/context.go2
-rw-r--r--core/vm/contracts.go2
-rw-r--r--core/vm/disasm.go2
-rw-r--r--core/vm/environment.go2
-rw-r--r--core/vm/errors.go2
-rw-r--r--core/vm/gas.go2
-rw-r--r--core/vm/logger.go2
-rw-r--r--core/vm/memory.go2
-rw-r--r--core/vm/opcodes.go2
-rw-r--r--core/vm/stack.go2
-rw-r--r--core/vm/virtual_machine.go2
-rw-r--r--core/vm/vm.go2
-rw-r--r--core/vm/vm_jit.go2
-rw-r--r--core/vm/vm_jit_fake.go2
-rw-r--r--core/vm_env.go2
63 files changed, 63 insertions, 63 deletions
diff --git a/core/asm.go b/core/asm.go
index 4c71cb1d9..a86a2c44c 100644
--- a/core/asm.go
+++ b/core/asm.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/bad_block.go b/core/bad_block.go
index 23bc6800c..cd3fb575a 100644
--- a/core/bad_block.go
+++ b/core/bad_block.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/bench_test.go b/core/bench_test.go
index 0c960108f..67ba15970 100644
--- a/core/bench_test.go
+++ b/core/bench_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/block_cache.go b/core/block_cache.go
index 2c72f9397..0fd711448 100644
--- a/core/block_cache.go
+++ b/core/block_cache.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/block_cache_test.go b/core/block_cache_test.go
index ecf0e42a1..ef826d5bd 100644
--- a/core/block_cache_test.go
+++ b/core/block_cache_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/block_processor.go b/core/block_processor.go
index ed0335630..6687cd000 100644
--- a/core/block_processor.go
+++ b/core/block_processor.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/block_processor_test.go b/core/block_processor_test.go
index 54fa34472..f48ce9607 100644
--- a/core/block_processor_test.go
+++ b/core/block_processor_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/blocks.go b/core/blocks.go
index 178230b5b..326e4c3fc 100644
--- a/core/blocks.go
+++ b/core/blocks.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/canary.go b/core/canary.go
index efdf19e7d..5eefe066c 100644
--- a/core/canary.go
+++ b/core/canary.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/chain_makers.go b/core/chain_makers.go
index 63e9334d2..283653d9a 100644
--- a/core/chain_makers.go
+++ b/core/chain_makers.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/chain_makers_test.go b/core/chain_makers_test.go
index edc0333be..98a585f9b 100644
--- a/core/chain_makers_test.go
+++ b/core/chain_makers_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/chain_manager.go b/core/chain_manager.go
index 5c132a668..c2e89a10d 100644
--- a/core/chain_manager.go
+++ b/core/chain_manager.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/chain_manager_test.go b/core/chain_manager_test.go
index e2ad86942..f0c097df6 100644
--- a/core/chain_manager_test.go
+++ b/core/chain_manager_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/chain_util.go b/core/chain_util.go
index 38273d2f0..326bf13fb 100644
--- a/core/chain_util.go
+++ b/core/chain_util.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/error.go b/core/error.go
index f055b103d..5e6ff4de7 100644
--- a/core/error.go
+++ b/core/error.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/events.go b/core/events.go
index f820b6b0b..a487fc51d 100644
--- a/core/events.go
+++ b/core/events.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/execution.go b/core/execution.go
index bab3a72e3..699bad9a3 100644
--- a/core/execution.go
+++ b/core/execution.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/fees.go b/core/fees.go
index 29ba5c5a6..0bb26f055 100644
--- a/core/fees.go
+++ b/core/fees.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/filter.go b/core/filter.go
index b78647f05..8a876396b 100644
--- a/core/filter.go
+++ b/core/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/core/filter_test.go b/core/filter_test.go
index c973bbed3..58e71e305 100644
--- a/core/filter_test.go
+++ b/core/filter_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/genesis.go b/core/genesis.go
index 86e494766..4c0323c17 100644
--- a/core/genesis.go
+++ b/core/genesis.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/helper_test.go b/core/helper_test.go
index c85df133e..b21f31d7c 100644
--- a/core/helper_test.go
+++ b/core/helper_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/manager.go b/core/manager.go
index c9fdce78e..a07c32659 100644
--- a/core/manager.go
+++ b/core/manager.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/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.
diff --git a/core/state_transition.go b/core/state_transition.go
index 8d2acb904..a5d4fc19b 100644
--- a/core/state_transition.go
+++ b/core/state_transition.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/transaction_pool.go b/core/transaction_pool.go
index 003d4a14a..2a6666ea1 100644
--- a/core/transaction_pool.go
+++ b/core/transaction_pool.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/transaction_pool_test.go b/core/transaction_pool_test.go
index 5e2294068..26af4fc16 100644
--- a/core/transaction_pool_test.go
+++ b/core/transaction_pool_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/transaction_util.go b/core/transaction_util.go
index d4b9f53c9..ce2ceac46 100644
--- a/core/transaction_util.go
+++ b/core/transaction_util.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/types/block.go b/core/types/block.go
index 8c6ed8591..427a3e6cb 100644
--- a/core/types/block.go
+++ b/core/types/block.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/types/block_test.go b/core/types/block_test.go
index 03fa679b1..aebb6328b 100644
--- a/core/types/block_test.go
+++ b/core/types/block_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/types/bloom9.go b/core/types/bloom9.go
index bfc27c6f7..0629b31d4 100644
--- a/core/types/bloom9.go
+++ b/core/types/bloom9.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/types/bloom9_test.go b/core/types/bloom9_test.go
index 25c96c7ca..f020670b1 100644
--- a/core/types/bloom9_test.go
+++ b/core/types/bloom9_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/types/common.go b/core/types/common.go
index 2b834a255..de6efcd86 100644
--- a/core/types/common.go
+++ b/core/types/common.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/types/derive_sha.go b/core/types/derive_sha.go
index 1c793becc..478edb0e8 100644
--- a/core/types/derive_sha.go
+++ b/core/types/derive_sha.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/types/receipt.go b/core/types/receipt.go
index 914ff0b3c..e01d69005 100644
--- a/core/types/receipt.go
+++ b/core/types/receipt.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/types/transaction.go b/core/types/transaction.go
index c60e45fe8..cc1793112 100644
--- a/core/types/transaction.go
+++ b/core/types/transaction.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/types/transaction_test.go b/core/types/transaction_test.go
index 11c30b1f7..1c0e27d9a 100644
--- a/core/types/transaction_test.go
+++ b/core/types/transaction_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/vm/analysis.go b/core/vm/analysis.go
index b88f33fdc..a0f615821 100644
--- a/core/vm/analysis.go
+++ b/core/vm/analysis.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/vm/asm.go b/core/vm/asm.go
index ccaacd36b..639201e50 100644
--- a/core/vm/asm.go
+++ b/core/vm/asm.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/vm/common.go b/core/vm/common.go
index be8511a8f..2e03ec80b 100644
--- a/core/vm/common.go
+++ b/core/vm/common.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/vm/context.go b/core/vm/context.go
index 18617b98f..162666ef2 100644
--- a/core/vm/context.go
+++ b/core/vm/context.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/vm/contracts.go b/core/vm/contracts.go
index 0e7c04c04..2d70f173e 100644
--- a/core/vm/contracts.go
+++ b/core/vm/contracts.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/vm/disasm.go b/core/vm/disasm.go
index 0aefbd659..2bfea5cbd 100644
--- a/core/vm/disasm.go
+++ b/core/vm/disasm.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/vm/environment.go b/core/vm/environment.go
index 8ef2a7426..723924b6f 100644
--- a/core/vm/environment.go
+++ b/core/vm/environment.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/vm/errors.go b/core/vm/errors.go
index 3af1ce6f5..24567e9a1 100644
--- a/core/vm/errors.go
+++ b/core/vm/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/vm/gas.go b/core/vm/gas.go
index 9dbfe65fd..af2e586a7 100644
--- a/core/vm/gas.go
+++ b/core/vm/gas.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/vm/logger.go b/core/vm/logger.go
index c6d3fbd93..736f595f6 100644
--- a/core/vm/logger.go
+++ b/core/vm/logger.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/vm/memory.go b/core/vm/memory.go
index 169707a32..0109050d7 100644
--- a/core/vm/memory.go
+++ b/core/vm/memory.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/vm/opcodes.go b/core/vm/opcodes.go
index 24d6b5294..ecced3650 100644
--- a/core/vm/opcodes.go
+++ b/core/vm/opcodes.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/vm/stack.go b/core/vm/stack.go
index d9d9dd2a5..3d669b2f2 100644
--- a/core/vm/stack.go
+++ b/core/vm/stack.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/vm/virtual_machine.go b/core/vm/virtual_machine.go
index 1d765d36c..047723744 100644
--- a/core/vm/virtual_machine.go
+++ b/core/vm/virtual_machine.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/vm/vm.go b/core/vm/vm.go
index d67e01307..21e0a4665 100644
--- a/core/vm/vm.go
+++ b/core/vm/vm.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/vm/vm_jit.go b/core/vm/vm_jit.go
index 6f7163c22..339cb8ea8 100644
--- a/core/vm/vm_jit.go
+++ b/core/vm/vm_jit.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/vm/vm_jit_fake.go b/core/vm/vm_jit_fake.go
index 191496e0a..456fcb8d4 100644
--- a/core/vm/vm_jit_fake.go
+++ b/core/vm/vm_jit_fake.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/vm_env.go b/core/vm_env.go
index 79aa460b2..c1a86d63e 100644
--- a/core/vm_env.go
+++ b/core/vm_env.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.