Commit 58aa23f0 authored by hezhengjun's avatar hezhengjun

remove evm run log info as too much in amount

parent ef1c4b47
...@@ -215,10 +215,6 @@ func (in *Interpreter) Run(contract *Contract, input []byte, readOnly bool) (ret ...@@ -215,10 +215,6 @@ func (in *Interpreter) Run(contract *Contract, input []byte, readOnly bool) (ret
logged = true logged = true
} }
log15.Debug("operation.execute", "op=", op.String(), "contract addr=", contract.self.Address().String(),
"CallerAddress=", contract.CallerAddress.String(),
"caller=", contract.caller.Address().String())
// 执行具体的指令操作逻辑(合约执行的核心) // 执行具体的指令操作逻辑(合约执行的核心)
res, err = operation.execute(&pc, in.evm, callContext) res, err = operation.execute(&pc, in.evm, callContext)
// 如果本操作需要返回,则讲操作返回的结果最为合约执行的结果 // 如果本操作需要返回,则讲操作返回的结果最为合约执行的结果
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment