2020-10-28 17:35:56 +00:00
|
|
|
package types
|
|
|
|
|
2021-06-08 21:30:23 +00:00
|
|
|
const TicketRandomnessLookback = 1
|
2020-10-28 17:35:56 +00:00
|
|
|
|
2020-11-27 16:16:08 +00:00
|
|
|
// DioneTask represents the values of task computation
|
2020-10-28 17:35:56 +00:00
|
|
|
type DioneTask struct {
|
2021-04-26 22:01:04 +00:00
|
|
|
OriginChain uint8
|
|
|
|
RequestType string
|
|
|
|
RequestParams string
|
|
|
|
Payload []byte
|
|
|
|
RequestID string
|
2020-10-28 17:35:56 +00:00
|
|
|
}
|