mirror of
https://github.com/status-im/dagger-contracts.git
synced 2025-01-28 07:15:50 +00:00
c8dda37300
- replace proofEnd() by slotState() - replace _slotAcceptsProofs() by slotState() - remove _stopRequiringProofs()
16 lines
201 B
JavaScript
16 lines
201 B
JavaScript
const RequestState = {
|
|
New: 0,
|
|
Started: 1,
|
|
Cancelled: 2,
|
|
Finished: 3,
|
|
Failed: 4,
|
|
}
|
|
|
|
const SlotState = {
|
|
Free: 0,
|
|
Filled: 1,
|
|
Finished: 2,
|
|
}
|
|
|
|
module.exports = { RequestState, SlotState }
|