(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int)
| 207 | } |
| 208 | |
| 209 | func (evm *EVM) CallCode(caller ContractRef, addr common.Address, input []byte, gas uint64, value *big.Int) (ret []byte, leftOverGas uint64, err error) { |
| 210 | realAddress := GetRealContractAddress(evm, caller, addr, gas) |
| 211 | return evm.callCode(caller, realAddress, input, gas, value) |
| 212 | } |
| 213 | |
| 214 | // CallCode executes the contract associated with the addr with the given input |
| 215 | // as parameters. It also handles any necessary value transfer required and takes |
nothing calls this directly
no test coverage detected