lotus/chain/types/execresult.go

13 lines
175 B
Go
Raw Normal View History

2020-04-08 22:27:31 +00:00
package types
import "time"
type ExecutionTrace struct {
Msg *Message
MsgRct *MessageReceipt
Error string
Duration time.Duration
2020-04-08 22:27:31 +00:00
Subcalls []ExecutionTrace
2020-04-08 22:27:31 +00:00
}