Merge pull request #9813 from filecoin-project/jennijuju-patch-4
feat: ux: add value option to message invocation cli
This commit is contained in:
commit
0026ad8c09
@ -1667,6 +1667,9 @@ var ChainInvokeEVMCmd = &cli.Command{
|
|||||||
&cli.StringFlag{
|
&cli.StringFlag{
|
||||||
Name: "from",
|
Name: "from",
|
||||||
Usage: "optionally specify the account to use for sending the exec message",
|
Usage: "optionally specify the account to use for sending the exec message",
|
||||||
|
}, &cli.IntFlag{
|
||||||
|
Name: "value",
|
||||||
|
Usage: "optionally specify the value to be sent with the invokation message",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
Action: func(cctx *cli.Context) error {
|
Action: func(cctx *cli.Context) error {
|
||||||
@ -1727,10 +1730,11 @@ var ChainInvokeEVMCmd = &cli.Command{
|
|||||||
fromAddr = addr
|
fromAddr = addr
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val := abi.NewTokenAmount(cctx.Int64("value"))
|
||||||
msg := &types.Message{
|
msg := &types.Message{
|
||||||
To: addr,
|
To: addr,
|
||||||
From: fromAddr,
|
From: fromAddr,
|
||||||
Value: big.Zero(),
|
Value: val,
|
||||||
Method: abi.MethodNum(2),
|
Method: abi.MethodNum(2),
|
||||||
Params: params,
|
Params: params,
|
||||||
}
|
}
|
||||||
|
@ -2455,6 +2455,7 @@ USAGE:
|
|||||||
|
|
||||||
OPTIONS:
|
OPTIONS:
|
||||||
--from value optionally specify the account to use for sending the exec message
|
--from value optionally specify the account to use for sending the exec message
|
||||||
|
--value value optionally specify the value to be sent with the invokation message (default: 0)
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user