Skip to content

Commit

Permalink
Merge pull request #6163 from filecoin-project/feat/add-asc-field-to-…
Browse files Browse the repository at this point in the history
…StorageDealQueryParams

feat: add asc field to StorageDealQueryParams
  • Loading branch information
simlecode authored Sep 22, 2023
2 parents 3ff535a + aca14a9 commit 8cca03e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion venus-shared/api/market/v0/method.md
Original file line number Diff line number Diff line change
Expand Up @@ -1716,7 +1716,8 @@ Inputs:
"DealID": 5432,
"PieceCID": "string value",
"Offset": 123,
"Limit": 123
"Limit": 123,
"Asc": true
}
]
```
Expand Down
3 changes: 2 additions & 1 deletion venus-shared/api/market/v1/method.md
Original file line number Diff line number Diff line change
Expand Up @@ -1717,7 +1717,8 @@ Inputs:
"DealID": 5432,
"PieceCID": "string value",
"Offset": 123,
"Limit": 123
"Limit": 123,
"Asc": true
}
]
```
Expand Down
1 change: 1 addition & 0 deletions venus-shared/types/market/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ type StorageDealQueryParams struct {
PieceCID string

Page
Asc bool
}

type ImportDataRef struct {
Expand Down

0 comments on commit 8cca03e

Please sign in to comment.