aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorGustav Simonsson <gustav.simonsson@gmail.com>2015-05-16 00:49:31 +0800
committerGustav Simonsson <gustav.simonsson@gmail.com>2015-05-16 00:49:31 +0800
commit32276e8b01a16840df38aa4b703ab9b2be5b8c74 (patch)
tree48b080589ef8ff0e9ad172ed79ceb5b3ed04b32b /core
parent830bdb1cfd781192f2ffd42e94650a7717ac748a (diff)
downloadgo-tangerine-32276e8b01a16840df38aa4b703ab9b2be5b8c74.tar
go-tangerine-32276e8b01a16840df38aa4b703ab9b2be5b8c74.tar.gz
go-tangerine-32276e8b01a16840df38aa4b703ab9b2be5b8c74.tar.bz2
go-tangerine-32276e8b01a16840df38aa4b703ab9b2be5b8c74.tar.lz
go-tangerine-32276e8b01a16840df38aa4b703ab9b2be5b8c74.tar.xz
go-tangerine-32276e8b01a16840df38aa4b703ab9b2be5b8c74.tar.zst
go-tangerine-32276e8b01a16840df38aa4b703ab9b2be5b8c74.zip
Update StateTests and nil create return on failed code deposit
Diffstat (limited to 'core')
-rw-r--r--core/state_transition.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/state_transition.go b/core/state_transition.go
index d95cbd35a..3d11a0464 100644
--- a/core/state_transition.go
+++ b/core/state_transition.go
@@ -205,6 +205,7 @@ func (self *StateTransition) transitionState() (ret []byte, usedGas *big.Int, er
if err := self.UseGas(dataGas); err == nil {
ref.SetCode(ret)
} else {
+ ret = nil // does not affect consensus but useful for StateTests validations
glog.V(logger.Core).Infoln("Insufficient gas for creating code. Require", dataGas, "and have", self.gas)
}
}