Skip to content

Commit

Permalink
Merge pull request #5197 from filecoin-project/fix/lock-propose
Browse files Browse the repository at this point in the history
fix lock propose
  • Loading branch information
magik6k authored Dec 15, 2020
2 parents 3d52c08 + 6c6711e commit 46e5cc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/multisig.go
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@ var msigLockProposeCmd = &cli.Command{
params, actErr := actors.SerializeParams(&msig2.LockBalanceParams{
StartEpoch: abi.ChainEpoch(start),
UnlockDuration: abi.ChainEpoch(duration),
Amount: abi.NewTokenAmount(amount.Int64()),
Amount: big.Int(amount),
})

if actErr != nil {
Expand Down

0 comments on commit 46e5cc9

Please sign in to comment.