Skip to content

Commit 672c0f0

Browse files
committed
fix help text for opt gas limit arg
1 parent 533761e commit 672c0f0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

multiversx_sdk_cli/cli_multisig.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def setup_parser(args: list[str], subparsers: Any) -> Any:
189189
sub.add_argument(
190190
"--opt-gas-limit",
191191
type=int,
192-
help="the size of the new quorum (number of signatures required to approve a proposal)",
192+
help="optional gas limit for the async call",
193193
)
194194
sub.add_argument("--contract-abi", type=str, help="the ABI file of the contract to call")
195195
sub.add_argument("--function", type=str, help="the function to call")
@@ -208,7 +208,7 @@ def setup_parser(args: list[str], subparsers: Any) -> Any:
208208
sub.add_argument(
209209
"--opt-gas-limit",
210210
type=int,
211-
help="the size of the new quorum (number of signatures required to approve a proposal)",
211+
help="optional gas limit for the async call",
212212
)
213213
sub.add_argument("--contract-abi", type=str, help="the ABI file of the contract to call")
214214
sub.add_argument("--function", type=str, help="the function to call")
@@ -227,7 +227,7 @@ def setup_parser(args: list[str], subparsers: Any) -> Any:
227227
sub.add_argument(
228228
"--opt-gas-limit",
229229
type=int,
230-
help="the size of the new quorum (number of signatures required to approve a proposal)",
230+
help="optional gas limit for the async call",
231231
)
232232
sub.add_argument("--contract-abi", type=str, help="the ABI file of the contract to call")
233233
sub.add_argument("--function", type=str, help="the function to call")

0 commit comments

Comments
 (0)