Skip to content

Instantly share code, notes, and snippets.

@hayeah
Created October 24, 2017 12:16
Show Gist options
  • Save hayeah/03669acb493542092d8cf018bd0a5011 to your computer and use it in GitHub Desktop.
Save hayeah/03669acb493542092d8cf018bd0a5011 to your computer and use it in GitHub Desktop.
if err == nil && !maxCodeSizeExceeded {
createDataGas := uint64(len(ret)) * params.CreateDataGas
if contract.UseGas(createDataGas) {
evm.StateDB.SetCode(contractAddr, ret)
} else {
err = ErrCodeStoreOutOfGas
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment