Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions venus-shared/api/market/method.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@ Inputs:
"MaxPieceSize": 42,
"MinPiece": 123,
"MinPieceSize": 42,
"MinUsedSpace": 42
"MinUsedSpace": 42,
"StartEpoch": 10101,
"EndEpoch": 10101
}
]
```
Expand Down Expand Up @@ -633,7 +635,9 @@ Inputs:
"MaxPieceSize": 42,
"MinPiece": 123,
"MinPieceSize": 42,
"MinUsedSpace": 42
"MinUsedSpace": 42,
"StartEpoch": 10101,
"EndEpoch": 10101
}
]
```
Expand Down
8 changes: 8 additions & 0 deletions venus-shared/types/market/assigner_type.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ type GetDealSpec struct {

// min limit of total space used by deals
MinUsedSpace uint64

// start epoch limit of the chosen deals
// if set, the deals should not be activated before or equal than the this epoch
StartEpoch abi.ChainEpoch

// end epoch limit of the chosen deals
// if set, the deals should not be alive after or equal than the this epoch
EndEpoch abi.ChainEpoch
}

type DealInfoIncludePath struct {
Expand Down