Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
refactor docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tonypony220 committed Jun 14, 2023
1 parent 52773c9 commit ecfa1e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions starknet_devnet/devnet_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def __init__(self, nargs=0, **kw):
def __call__(self, parser, namespace, values, option_string=None):
if option_string == "--hide-predeployed-accounts":
warn(
"WARNING: Argument --hide-predeployed-accounts is deprecated",
"WARNING: Argument --hide-predeployed-accounts is deprecated; applying --hide-predeployed-contracts instead",
file=sys.stderr,
)
setattr(namespace, self.dest, True)
Expand Down Expand Up @@ -347,7 +347,7 @@ def parse_args(raw_args: List[str]):
"--hide-predeployed-contracts",
"--hide-predeployed-accounts", # for backwards compatibility
action=WarnIfDeprecatedArgumentAction,
help="Prevents from printing the predeployed contracts details",
help="Prevents from printing the predeployed accounts details. Argument --hide-predeployed-accounts is deprecated",
)
parser.add_argument(
"--start-time",
Expand Down

0 comments on commit ecfa1e7

Please sign in to comment.