Skip to content

Commit

Permalink
make gen
Browse files Browse the repository at this point in the history
  • Loading branch information
geoff-vball committed Sep 13, 2022
1 parent 503ed52 commit 600624e
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 10 deletions.
7 changes: 4 additions & 3 deletions cli/beneficiary.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ import (
"bytes"
"fmt"

"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/lotus/build"
"github.com/urfave/cli/v2"
"golang.org/x/xerrors"

"github.com/filecoin-project/go-address"
"github.com/filecoin-project/go-state-types/abi"

"github.com/filecoin-project/lotus/build"
"github.com/filecoin-project/lotus/chain/types"
)

Expand All @@ -23,7 +24,7 @@ var beneficiaryCmd = &cli.Command{

var beneficiaryWithdrawCmd = &cli.Command{
Name: "withdraw",
Usage: "withdraw available balance to beneficiary address. Will not work from non-beneficiary owner addresses. Use lotus-miner for non-beneficary owner withdrawls",
Usage: "withdraw available balance to beneficiary address. Will not work from non-beneficiary owner addresses. Use lotus-miner for non-beneficiary owner withdrawls",
ArgsUsage: "[miner address, amount (FIL)]",
Flags: []cli.Flag{
&cli.IntFlag{
Expand Down
45 changes: 38 additions & 7 deletions documentation/en/cli-lotus.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ COMMANDS:
version Print version
help, h Shows a list of commands or help for one command
BASIC:
send Send funds between accounts
wallet Manage wallet
info Print node info
client Make deals, store data, retrieve data
msig Interact with a multisig wallet
filplus Interact with the verified registry actor used by Filplus
paych Manage payment channels
send Send funds between accounts
wallet Manage wallet
info Print node info
client Make deals, store data, retrieve data
msig Interact with a multisig wallet
filplus Interact with the verified registry actor used by Filplus
paych Manage payment channels
beneficiary Manage miner beneficiary
DEVELOPER:
auth Manage RPC permissions
mpool Manage message pool
Expand Down Expand Up @@ -1495,6 +1496,36 @@ OPTIONS:
```

## lotus beneficiary
```
NAME:
lotus beneficiary - Manage miner beneficiary
USAGE:
lotus beneficiary command [command options] [arguments...]
COMMANDS:
withdraw withdraw available balance to beneficiary address. Will not work from non-beneficiary owner addresses. Use lotus-miner for non-beneficary owner withdrawls
help, h Shows a list of commands or help for one command
OPTIONS:
--help, -h show help (default: false)
```

### lotus beneficiary withdraw
```
NAME:
lotus beneficiary withdraw - withdraw available balance to beneficiary address. Will not work from non-beneficiary owner addresses. Use lotus-miner for non-beneficary owner withdrawls
USAGE:
lotus beneficiary withdraw [command options] [miner address, amount (FIL)]
OPTIONS:
--confidence value number of block confirmations to wait for (default: 5)
```

## lotus auth
```
NAME:
Expand Down

0 comments on commit 600624e

Please sign in to comment.