Skip to content

Commit

Permalink
fix wrong index
Browse files Browse the repository at this point in the history
  • Loading branch information
whyrusleeping committed Oct 15, 2020
1 parent fdb115e commit ccc780f
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 @@ -1469,7 +1469,7 @@ var msigProposeThresholdCmd = &cli.Command{
return err
}

newM, err := strconv.ParseUint(cctx.Args().Get(2), 10, 64)
newM, err := strconv.ParseUint(cctx.Args().Get(1), 10, 64)
if err != nil {
return err
}
Expand Down

0 comments on commit ccc780f

Please sign in to comment.