aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/instructions.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2015-08-02 08:20:41 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2015-08-07 18:52:23 +0800
commit184e9ae9a81df2db6381e18d3daa035d913ae341 (patch)
tree1404780c9d9772b797ff979594e7468ca382d2b6 /core/vm/instructions.go
parent846f34f78b5f76233655d0cf3611706e99f2efe2 (diff)
downloaddexon-184e9ae9a81df2db6381e18d3daa035d913ae341.tar
dexon-184e9ae9a81df2db6381e18d3daa035d913ae341.tar.gz
dexon-184e9ae9a81df2db6381e18d3daa035d913ae341.tar.bz2
dexon-184e9ae9a81df2db6381e18d3daa035d913ae341.tar.lz
dexon-184e9ae9a81df2db6381e18d3daa035d913ae341.tar.xz
dexon-184e9ae9a81df2db6381e18d3daa035d913ae341.tar.zst
dexon-184e9ae9a81df2db6381e18d3daa035d913ae341.zip
core, tests: reduced state copy by N calls
Reduced the amount of state copied that are required by N calls by doing a balance check prior to any state modifications.
Diffstat (limited to 'core/vm/instructions.go')
-rw-r--r--core/vm/instructions.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/vm/instructions.go b/core/vm/instructions.go
index 7793ff169..d7605e5a2 100644
--- a/core/vm/instructions.go
+++ b/core/vm/instructions.go
@@ -13,6 +13,7 @@
//
// 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 (