Skip to content

Commit 43829fd

Browse files
committed
Typos
1 parent 8b0899a commit 43829fd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

async_substrate_interface/substrate_addons.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def __init__(
117117
max_retries: int = 5,
118118
retry_timeout: float = 60.0,
119119
_mock: bool = False,
120-
legacy_account_id_decode: bool = True
120+
legacy_account_id_decode: bool = True,
121121
):
122122
fallback_chains = fallback_chains or []
123123
self.fallback_chains = (
@@ -148,7 +148,7 @@ def __init__(
148148
_mock=_mock,
149149
retry_timeout=retry_timeout,
150150
max_retries=max_retries,
151-
legacy_account_id_decode=self.legacy_account_id_decode
151+
legacy_account_id_decode=self.legacy_account_id_decode,
152152
)
153153
initialized = True
154154
logger.info(f"Connected to {chain_url}")
@@ -246,6 +246,7 @@ def __init__(
246246
max_retries: int = 5,
247247
retry_timeout: float = 60.0,
248248
_mock: bool = False,
249+
legacy_account_id_decode: bool = True,
249250
):
250251
fallback_chains = fallback_chains or []
251252
self.fallback_chains = (
@@ -268,6 +269,7 @@ def __init__(
268269
_mock=_mock,
269270
retry_timeout=retry_timeout,
270271
max_retries=max_retries,
272+
legacy_account_id_decode=legacy_account_id_decode,
271273
)
272274
self._original_methods = {
273275
method: getattr(self, method) for method in RETRY_METHODS

0 commit comments

Comments
 (0)