Merge pull request #5197 from filecoin-project/fix/lock-propose

fix lock propose
This commit is contained in:
Łukasz Magiera 2020-12-15 23:34:02 +01:00 committed by GitHub
commit 46e5cc9317
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {