mirror of
https://github.com/status-im/nim-codex.git
synced 2025-02-21 06:58:52 +00:00
* openAPI: StorageRequestCreation: reward => pricePerByte, collateral => collateralPerByte * purchasing: reward => pricePerByte, collateral => collateralPerByte * Updates availabilities and reservations to use totalCollateral, minPricePerByte, and maxCollateralPerByte * Uses correct div operator when operating on UInt256 * proposal updating totalCollateral in availability * makes sure that reading currentCollateral happens before freeing slot * Updates naming * fixes tests: unit and contracts * uses feat/price-per-byte branch for codex-contracts-eth * temporarily disables integration tests on CI * introduces high level <<totalCollateral>> property for a cleaner external interface * updates integration tests * Applies review comments * Updates description of totalCollateral in SalesAvailability * updates codex-contracts-eth (price-per-byte)
17 lines
453 B
Nim
17 lines
453 B
Nim
import ./states/testunknown
|
|
import ./states/testdownloading
|
|
import ./states/testfilling
|
|
import ./states/testpayout
|
|
import ./states/testfinished
|
|
import ./states/testinitialproving
|
|
import ./states/testfilled
|
|
import ./states/testproving
|
|
import ./states/testsimulatedproving
|
|
import ./states/testcancelled
|
|
import ./states/testerrored
|
|
import ./states/testignored
|
|
import ./states/testpreparing
|
|
import ./states/testslotreserving
|
|
|
|
{.warning[UnusedImport]: off.}
|