Skip to content

Commit

Permalink
chore: fix function name (#12716)
Browse files Browse the repository at this point in the history
Signed-off-by: chuangjinglu <[email protected]>
  • Loading branch information
chuangjinglu authored Nov 23, 2024
1 parent e2c46f1 commit 0d1d7c2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/api_storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ type StorageMiner interface {
// SealingSchedDiag dumps internal sealing scheduler state
SealingSchedDiag(ctx context.Context, doSched bool) (interface{}, error) //perm:admin
SealingAbort(ctx context.Context, call storiface.CallID) error //perm:admin
// SealingSchedRemove removes a request from sealing pipeline
// SealingRemoveRequest removes a request from sealing pipeline
SealingRemoveRequest(ctx context.Context, schedId uuid.UUID) error //perm:admin

// paths.SectorIndex
Expand Down
2 changes: 1 addition & 1 deletion build/openrpc/miner.json
Original file line number Diff line number Diff line change
Expand Up @@ -3235,7 +3235,7 @@
{
"name": "Filecoin.SealingRemoveRequest",
"description": "```go\nfunc (s *StorageMinerStruct) SealingRemoveRequest(p0 context.Context, p1 uuid.UUID) error {\n\tif s.Internal.SealingRemoveRequest == nil {\n\t\treturn ErrNotSupported\n\t}\n\treturn s.Internal.SealingRemoveRequest(p0, p1)\n}\n```",
"summary": "SealingSchedRemove removes a request from sealing pipeline\n",
"summary": "SealingRemoveRequest removes a request from sealing pipeline\n",
"paramStructure": "by-position",
"params": [
{
Expand Down
2 changes: 1 addition & 1 deletion documentation/en/api-v0-methods-miner.md
Original file line number Diff line number Diff line change
Expand Up @@ -1167,7 +1167,7 @@ Inputs:
Response: `{}`

### SealingRemoveRequest
SealingSchedRemove removes a request from sealing pipeline
SealingRemoveRequest removes a request from sealing pipeline


Perms: admin
Expand Down

0 comments on commit 0d1d7c2

Please sign in to comment.