mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-10 01:13:10 +00:00
Add or remove proof requirements when a request contract’s state changes. When a request sale has completed (for a slot), the host who purchased that slot now must provide regular proofs for the data they are contracted to hold. This is now enforced by adding the slotId to the HashSet of Ids for which to require proofs. When a request has been cancelled (not all slots were filled before the request expired), proofs no longer need to be provided and the slotId is removed from teh HashSet. Add `isCancelled` and `isSlotCancelled` checks to query the contract state without relying the on the state context variable in the contract. Because contract state can only be updated in a transaction, and the client withdrawing funds is responsible for changing the contract state to “Cancelled”, the `isCancelled` and `isSlotCancelled` functions were introduced to check the state regardless of whether or not the client had already withdrawn their funds.
53 lines
1.6 KiB
Nim
53 lines
1.6 KiB
Nim
import pkg/chronos
|
|
import pkg/stint
|
|
import pkg/upraises
|
|
import ./periods
|
|
import ../../contracts/requests
|
|
|
|
export chronos
|
|
export stint
|
|
export periods
|
|
export requests
|
|
|
|
type
|
|
Proofs* = ref object of RootObj
|
|
Subscription* = ref object of RootObj
|
|
OnProofSubmitted* = proc(id: SlotId, proof: seq[byte]) {.gcsafe, upraises:[].}
|
|
|
|
method periodicity*(proofs: Proofs):
|
|
Future[Periodicity] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method isSlotCancelled*(proofs: Proofs,
|
|
id: ContractId): Future[bool] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method isCancelled*(proofs: Proofs,
|
|
id: array[32, byte]): Future[bool] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method isProofRequired*(proofs: Proofs,
|
|
id: SlotId): Future[bool] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method willProofBeRequired*(proofs: Proofs,
|
|
id: SlotId): Future[bool] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method getProofEnd*(proofs: Proofs,
|
|
id: SlotId): Future[UInt256] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method submitProof*(proofs: Proofs,
|
|
id: SlotId,
|
|
proof: seq[byte]) {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method subscribeProofSubmission*(proofs: Proofs,
|
|
callback: OnProofSubmitted):
|
|
Future[Subscription] {.base, async.} =
|
|
raiseAssert("not implemented")
|
|
|
|
method unsubscribe*(subscription: Subscription) {.base, async, upraises:[].} =
|
|
raiseAssert("not implemented")
|