aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2017-04-14 16:29:00 +0800
committerFelix Lange <fjl@twurst.com>2017-04-14 16:29:00 +0800
commit0cc492f81595c28caa24964a105446e362164539 (patch)
tree438835ab21a0eba74aef9c43fe4d5f35cd2f5d85 /core/vm
parentb35aa21f9f8561c09cfe4d3b0548eda6cff8604e (diff)
downloaddexon-0cc492f81595c28caa24964a105446e362164539.tar.gz
dexon-0cc492f81595c28caa24964a105446e362164539.tar.zst
dexon-0cc492f81595c28caa24964a105446e362164539.zip
all: update license information
Diffstat (limited to 'core/vm')
-rw-r--r--core/vm/gas_table.go16
-rw-r--r--core/vm/gas_table_test.go16
-rw-r--r--core/vm/int_pool_verifier.go16
-rw-r--r--core/vm/int_pool_verifier_empty.go16
-rw-r--r--core/vm/interface.go2
-rw-r--r--core/vm/memory_table.go16
-rw-r--r--core/vm/runtime/fuzz.go16
-rw-r--r--core/vm/stack_table.go16
8 files changed, 113 insertions, 1 deletions
diff --git a/core/vm/gas_table.go b/core/vm/gas_table.go
index f1c62df8e..24ad6caa5 100644
--- a/core/vm/gas_table.go
+++ b/core/vm/gas_table.go
@@ -1,3 +1,19 @@
+// Copyright 2017 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 vm
import (
diff --git a/core/vm/gas_table_test.go b/core/vm/gas_table_test.go
index cceb89285..1ee909e92 100644
--- a/core/vm/gas_table_test.go
+++ b/core/vm/gas_table_test.go
@@ -1,3 +1,19 @@
+// Copyright 2017 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 vm
import (
diff --git a/core/vm/int_pool_verifier.go b/core/vm/int_pool_verifier.go
index 61c83ba7e..82fbfed69 100644
--- a/core/vm/int_pool_verifier.go
+++ b/core/vm/int_pool_verifier.go
@@ -1,3 +1,19 @@
+// Copyright 2017 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/>.
+
// +build VERIFY_EVM_INTEGER_POOL
package vm
diff --git a/core/vm/int_pool_verifier_empty.go b/core/vm/int_pool_verifier_empty.go
index 982f8c6dd..a5f1dc02b 100644
--- a/core/vm/int_pool_verifier_empty.go
+++ b/core/vm/int_pool_verifier_empty.go
@@ -1,3 +1,19 @@
+// Copyright 2017 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/>.
+
// +build !VERIFY_EVM_INTEGER_POOL
package vm
diff --git a/core/vm/interface.go b/core/vm/interface.go
index 4d8ece41c..c0c52732b 100644
--- a/core/vm/interface.go
+++ b/core/vm/interface.go
@@ -1,4 +1,4 @@
-// Copyright 2014 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/core/vm/memory_table.go b/core/vm/memory_table.go
index 3141a2f61..654137c70 100644
--- a/core/vm/memory_table.go
+++ b/core/vm/memory_table.go
@@ -1,3 +1,19 @@
+// Copyright 2017 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 vm
import (
diff --git a/core/vm/runtime/fuzz.go b/core/vm/runtime/fuzz.go
index de5b0f45d..cb9ff08b5 100644
--- a/core/vm/runtime/fuzz.go
+++ b/core/vm/runtime/fuzz.go
@@ -1,3 +1,19 @@
+// Copyright 2017 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/>.
+
// +build gofuzz
package runtime
diff --git a/core/vm/stack_table.go b/core/vm/stack_table.go
index ddc41fed2..a4b1cfcd8 100644
--- a/core/vm/stack_table.go
+++ b/core/vm/stack_table.go
@@ -1,3 +1,19 @@
+// Copyright 2017 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 vm
import (
insertions'>+25 | * Removed obsolete files.Sankarasivasubramanian Pasupathilingam2008-10-034-527/+6 | * Change licese from GPL to LGPL.Sankarasivasubramanian Pasupathilingam2008-10-035-47/+60 | * ** Fix for bug #554418Milan Crha2008-10-012-2/+8 | * Change License from GPL to LGPL.Sankarasivasubramanian Pasupathilingam2008-10-013-33/+37 | * Change License from GPL to LGPL.Sankarasivasubramanian Pasupathilingam2008-09-304-29/+44 | * ** Fix for bug #530716Milan Crha2008-09-292-1/+14 | * ** Remove unused filesSrinivasa Ragavan2008-09-291-2/+3 | * Remove obsolete files.Sankarasivasubramanian Pasupathilingam2008-09-294-751/+6 | * License changes from GPL to LGPLSankarasivasubramanian Pasupathilingam2008-09-298-101/+117 | * Change License from GPL to LGPLSankarasivasubramanian Pasupathilingam2008-09-245-46/+57 | * Change license from GPL to LGPLSankarasivasubramanian Pasupathilingam2008-09-195-61/+70 | * License changes from GPL to LGPLSankarasivasubramanian Pasupathilingam2008-09-168-95/+107 | * License Changes from GPL to LGPLSankarasivasubramanian Pasupathilingam2008-09-1312-137/+150 | * ** Fixes bug #549968Matthew Barnes2008-09-072-1/+8 | * esthetic license header cleans, and fix e-pkcs12Michael Meeks2008-09-061-7/+2 | * fix licensing snafus.Michael Meeks2008-09-063-44/+2 | * correct licensing cockup; apologies.Michael Meeks2008-09-063-42/+4 | * License changes. Changed license from GPL to LGPL.Sankarasivasubramanian Pasupathilingam2008-09-0414-174/+189 | * Change License from GPL to LGPL. 2nd batch.Sankarasivasubramanian Pasupathilingam2008-09-03112-1678/+1761 | * ** Fixes bug #550334Matthew Barnes2008-09-022-1/+8 | * Fix vertical alignment of labels.Matthew Barnes2008-08-302-2/+7 | * License ChangesSankarasivasubramanian Pasupathilingam2008-08-27106-1494/+1750 | * ** Fixes bug #547411Matthew Barnes2008-08-152-8/+20 | * New convenience function for launching help from Evolution. Displays anMatthew Barnes2008-08-153-17/+12 | * ** Fixes bug #546892Matthew Barnes2008-08-1210-106/+75 | * ** Fix for bug #352695Milan Crha2008-08-112-2/+11 | * ** Fix for bug #519292Milan Crha2008-08-115-39/+36 | * ** Fix for bug #352695Milan Crha2008-08-115-12/+80 | * ** Part of fix for bug #543943Milan Crha2008-07-233-0/+29 | * Committing on behalf of Milan Crha <mcrha@redhat.com> Milan Crha2008-07-219-1/+131 | * ** Fixes bug #542587Matthew Barnes2008-07-214-0/+274 * | Fix a couple more attachment issues.Matthew Barnes2009-04-242-1/+16 * | Fix a couple attachment issuesMatthew Barnes2009-04-242-2/+13 * | Reset ETable vertical padding to 3 to more closely match GtkTreeView.Matthew Barnes2009-04-241-1/+1 * | Bug 565780 – Message view is tightly packed and hard to readMatthew Barnes2009-04-241-3/+4 * | Miscellaneous bug fixes.Matthew Barnes2009-04-243-32/+58 * | Add "View Inline" / "Hide" menu items to the popup menu.Matthew Barnes2009-04-155-43/+219 * | Make the selected attachment view and file chooser folder persistent.Matthew Barnes2009-04-152-0/+28 * | Bug fixes and formerly unfinished bits of the attachment rewrite.Matthew Barnes2009-04-117-14/+38 * | Hey, how'd those get in there?Matthew Barnes2009-04-083-573/+0 * | Attachment rewrite pretty much complete. Just testing now.Matthew Barnes2009-04-0812-26/+1407 * | Finish attachment drag and drop.Matthew Barnes2009-04-0212-809/+532 * | Extend EAttachmentView by subclassing EAttachmentHandler.Matthew Barnes2009-04-0114-2116/+796 * | Saving progress again on the attachment rewrite.Matthew Barnes2009-03-314-27/+287 * | Saving progress again on the attachment rewrite.Matthew Barnes2009-03-309-515/+990 * | Saving progress again on the attachment rewrite.Matthew Barnes2009-03-273-158/+327 * | Saving progress again on the attachment rewrite.Matthew Barnes2009-03-269-959/+1571 * | Saving progress again on the attachment rewrite.Matthew Barnes2009-03-2412-204/+985 * | Saving progress on a massive attachment handling rewrite.Matthew Barnes2009-03-2123-1199/+5219 * | Add e_lookup_action() and e_lookup_action_group() to e-util, soMatthew Barnes2009-03-108-52/+389 * | Cleaning up the attachment bar, centralizing its popup menu, and convertingMatthew Barnes2009-03-0915-1213/+3449 * | Fix compilation error.Matthew Barnes2009-02-211-1/+0 * | Kill EDropdownButton.Matthew Barnes2009-02-217-458/+35 * | Miscellaneous bug fixes.Matthew Barnes2009-02-171-1/+1 * | Move signature script execution to e-util/e-signature-utils.s so theMatthew Barnes2009-02-164-3/+470 * | Merge revisions 37200:3266 from trunk.Matthew Barnes2009-02-153-2/+11 * | Get mail search bar partially working without help from EFilterBar.Matthew Barnes2009-02-141-4/+2 * | Rewrite the signature management UI from top to bottom.Matthew Barnes2009-02-1011-0/+2451 * | Rewrite the mail label code from top to bottom.Matthew Barnes2009-02-082-0/+20 * | Merge revisions 37108:37199 from trunk.Matthew Barnes2009-02-012-9/+25 * | Add unique-1.0 requirement (blessed external dependency).Matthew Barnes2009-01-291-1/+1 * | Miscellaneous stuff.Matthew Barnes2009-01-274-112/+1 * | Fix a crash when cancelling a task in the task bar.Matthew Barnes2009-01-251-0/+3 * | Get automatic message selection working.Matthew Barnes2009-01-241-0/+10 * | Redesign EPluginUI to accommodate merging and unmerging shell views.Matthew Barnes2009-01-242-146/+0 * | Formalize the "no disabled items in popup menus" policy in the form of aMatthew Barnes2009-01-203-0/+382 * | Hack GtkIconTheme so we can reference category icons as named icons.Matthew Barnes2009-01-181-8/+46 * | Fix a typo.Matthew Barnes2009-01-161-1/+1 * | Merge revisions 36866:37046 from trunk.Matthew Barnes2009-01-1213-86/+73 * | Continue chipping away at EMFolderView and EMFolderBrowser.Matthew Barnes2009-01-112-10/+8 * | Fix some miscellaneous mailer bugs.Matthew Barnes2009-01-081-1/+4 * | Get the Character Encoding menu working.Matthew Barnes2009-01-012-172/+37 * | Merge revisions 36811:36865 from trunk.Matthew Barnes2008-12-115-18/+27 * | Merge revisions 36737:36810 from trunk.Matthew Barnes2008-11-243-2/+11