Skip to content

Commit

Permalink
address cmts
Browse files Browse the repository at this point in the history
  • Loading branch information
dydxwill committed Oct 13, 2023
1 parent 1d0bac4 commit 55c10c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion v4-client-py/v4_client_py/chain/aerial/client/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def prepare_and_broadcast_basic_transaction(
:param gas_limit: The gas limit
:param memo: Transaction memo, defaults to None
:param broadcast_mode: Broadcast mode, defaults to None
:param fee: Transaction fee, defaults to 5000
:param fee: Transaction fee, defaults to 5000. Denomination is determined by the network config.
:return: broadcast transaction
"""
Expand Down
10 changes: 5 additions & 5 deletions v4-client-py/v4_client_py/chain/aerial/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ def fetchai_beta_testnet(cls):
raise RuntimeError("No beta testnet available")

@classmethod
def fetchai_stable_testnet(cls):
"""Get the fetchai stable testnet.
def fetch_dydx_stable_testnet(cls):
"""Get the dydx stable testnet.
:return: fetchai stable testnet. For now dorado is fetchai stable testnet.
:return: dydx stable testnet.
"""
return cls.fetch_dydx_testnet()

Expand Down Expand Up @@ -144,7 +144,7 @@ def latest_stable_testnet(cls) -> "NetworkConfig":
:return: latest stable testnet
"""
warnings.warn(
"latest_stable_testnet is deprecated, use fetchai_stable_testnet instead",
"latest_stable_testnet is deprecated, use fetch_dydx_stable_testnet instead",
DeprecationWarning,
)
return cls.fetchai_stable_testnet()
return cls.fetch_dydx_stable_testnet()

0 comments on commit 55c10c9

Please sign in to comment.