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
2 changes: 1 addition & 1 deletion chain/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ loop:
// FIXME: The reassembly logic should be part of the `client`
// service, the consumer should not be concerned with the
// `MaxRequestLength` limitation, it should just be able to request
// an segment of arbitrary length. The same burden is put on
// a segment of arbitrary length. The same burden is put on
// `syncFork()` which needs to be aware this as well.
if blockSet[len(blockSet)-1].IsChildOf(blks[0]) == false {
return nil, xerrors.Errorf("retrieved segments of the chain are not connected at heights %d/%d",
Expand Down
4 changes: 2 additions & 2 deletions cmd/lotus-shed/miner-multisig.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ var mmApproveChangeOwner = &cli.Command{

var mmProposeChangeWorker = &cli.Command{
Name: "propose-change-worker",
Usage: "Propose an worker address change",
Usage: "Propose a worker address change",
ArgsUsage: "[newWorker]",
Action: func(cctx *cli.Context) error {
if !cctx.Args().Present() {
Expand Down Expand Up @@ -580,7 +580,7 @@ var mmProposeChangeBeneficiary = &cli.Command{

var mmConfirmChangeWorker = &cli.Command{
Name: "confirm-change-worker",
Usage: "Confirm an worker address change",
Usage: "Confirm a worker address change",
ArgsUsage: "[newWorker]",
Action: func(cctx *cli.Context) error {
if !cctx.Args().Present() {
Expand Down
2 changes: 1 addition & 1 deletion storage/sealer/worker_local.go
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ func (l *LocalWorker) GenerateWindowPoStAdv(ctx context.Context, ppt abi.Registe
// When it does happen, window post runner logic will just re-check sectors, and retry with newly-discovered-bad sectors skipped
log.Errorf("couldn't read some challenges (skipped %d)", len(skipped))

// note: can't return an error as this in an jsonrpc call
// note: can't return an error as this in a jsonrpc call
return storiface.WindowPoStResult{Skipped: skipped}, nil
}

Expand Down
Loading