aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/vm.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-07-06 16:51:14 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-07-06 16:51:14 +0800
commit46e7c8512edd6de49c546467505673155ebbd1c2 (patch)
tree5941123c1c1ad743d2e4e231481fdb93d005224c /core/vm/vm.go
parent9c3db1be1dd24c366a58a7ced22adfa0b0839efe (diff)
parent0f04af5916cba5234118a442b6100c8122389abf (diff)
downloaddexon-46e7c8512edd6de49c546467505673155ebbd1c2.tar
dexon-46e7c8512edd6de49c546467505673155ebbd1c2.tar.gz
dexon-46e7c8512edd6de49c546467505673155ebbd1c2.tar.bz2
dexon-46e7c8512edd6de49c546467505673155ebbd1c2.tar.lz
dexon-46e7c8512edd6de49c546467505673155ebbd1c2.tar.xz
dexon-46e7c8512edd6de49c546467505673155ebbd1c2.tar.zst
dexon-46e7c8512edd6de49c546467505673155ebbd1c2.zip
Merge pull request #1395 from Gustav-Simonsson/fix_core_errors_in_apply_txs
Fix core errors in apply txs
Diffstat (limited to 'core/vm/vm.go')
-rw-r--r--core/vm/vm.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/vm/vm.go b/core/vm/vm.go
index ba803683b..e390fb89c 100644
--- a/core/vm/vm.go
+++ b/core/vm/vm.go
@@ -116,7 +116,7 @@ func (self *Vm) Run(context *Context, input []byte) (ret []byte, err error) {
context.UseGas(context.Gas)
- return context.Return(nil), OutOfGasError{}
+ return context.Return(nil), OutOfGasError
}
// Resize the memory calculated previously
mem.Resize(newMemSize.Uint64())
@@ -789,7 +789,7 @@ func (self *Vm) RunPrecompiled(p *PrecompiledAccount, input []byte, context *Con
return context.Return(ret), nil
} else {
- return nil, OutOfGasError{}
+ return nil, OutOfGasError
}
}