aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2017-01-18 04:49:08 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2017-01-18 04:50:08 +0800
commit508fdc3496542e10de1adb6d7c55030e54d66d8f (patch)
treef0cfe622ace453ec42bbb034ed9d265ddd9a1480 /core
parentd63752ef4d4e455f2f8f0acebf89e482534b0ef1 (diff)
downloaddexon-508fdc3496542e10de1adb6d7c55030e54d66d8f.tar
dexon-508fdc3496542e10de1adb6d7c55030e54d66d8f.tar.gz
dexon-508fdc3496542e10de1adb6d7c55030e54d66d8f.tar.bz2
dexon-508fdc3496542e10de1adb6d7c55030e54d66d8f.tar.lz
dexon-508fdc3496542e10de1adb6d7c55030e54d66d8f.tar.xz
dexon-508fdc3496542e10de1adb6d7c55030e54d66d8f.tar.zst
dexon-508fdc3496542e10de1adb6d7c55030e54d66d8f.zip
core: removal of dead-code
Removal of dead code that appeard as if we had a consensus issue. This however is not the case as the proper error catching happens in the vm package instead.
Diffstat (limited to 'core')
-rw-r--r--core/state_transition.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/core/state_transition.go b/core/state_transition.go
index 38fbebfd9..3cb7e500c 100644
--- a/core/state_transition.go
+++ b/core/state_transition.go
@@ -233,9 +233,6 @@ func (self *StateTransition) TransitionDb() (ret []byte, requiredGas, usedGas *b
)
if contractCreation {
ret, _, vmerr = vmenv.Create(sender, self.data, self.gas, self.value)
- if homestead && err == vm.ErrCodeStoreOutOfGas {
- self.gas = Big0
- }
} else {
// Increment the nonce for the next transaction
self.state.SetNonce(sender.Address(), self.state.GetNonce(sender.Address())+1)