fix lint
This commit is contained in:
parent
0656b62176
commit
15a6995cda
@ -43,6 +43,7 @@ var actorCmd = &cli.Command{
|
|||||||
actorControl,
|
actorControl,
|
||||||
actorProposeChangeWorker,
|
actorProposeChangeWorker,
|
||||||
actorConfirmChangeWorker,
|
actorConfirmChangeWorker,
|
||||||
|
actorCompactAllocatedCmd,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1075,7 +1076,7 @@ var actorCompactAllocatedCmd = &cli.Command{
|
|||||||
|
|
||||||
m := cctx.Uint64("mask-last-offset")
|
m := cctx.Uint64("mask-last-offset")
|
||||||
if last <= m+1 {
|
if last <= m+1 {
|
||||||
return xerrors.Errorf("higest allocated sector lower than mask offset %d: %d", m+1, last)
|
return xerrors.Errorf("highest allocated sector lower than mask offset %d: %d", m+1, last)
|
||||||
}
|
}
|
||||||
// securty to not brick a miner
|
// securty to not brick a miner
|
||||||
if last > 1<<60 {
|
if last > 1<<60 {
|
||||||
|
@ -207,6 +207,7 @@ COMMANDS:
|
|||||||
control Manage control addresses
|
control Manage control addresses
|
||||||
propose-change-worker Propose a worker address change
|
propose-change-worker Propose a worker address change
|
||||||
confirm-change-worker Confirm a worker address change
|
confirm-change-worker Confirm a worker address change
|
||||||
|
compact-allocated compact allocated sectors bitfield
|
||||||
help, h Shows a list of commands or help for one command
|
help, h Shows a list of commands or help for one command
|
||||||
|
|
||||||
OPTIONS:
|
OPTIONS:
|
||||||
@ -361,6 +362,22 @@ OPTIONS:
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### lotus-miner actor compact-allocated
|
||||||
|
```
|
||||||
|
NAME:
|
||||||
|
lotus-miner actor compact-allocated - compact allocated sectors bitfield
|
||||||
|
|
||||||
|
USAGE:
|
||||||
|
lotus-miner actor compact-allocated [command options] [arguments...]
|
||||||
|
|
||||||
|
OPTIONS:
|
||||||
|
--mask-last-offset value Mask sector IDs from 0 to 'higest_allocated - offset' (default: 0)
|
||||||
|
--mask-upto-n value Mask sector IDs from 0 to 'n' (default: 0)
|
||||||
|
--really-do-it Actually send transaction performing the action (default: false)
|
||||||
|
--help, -h show help (default: false)
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
## lotus-miner info
|
## lotus-miner info
|
||||||
```
|
```
|
||||||
NAME:
|
NAME:
|
||||||
|
Loading…
Reference in New Issue
Block a user