We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7295c6 commit d9acea5Copy full SHA for d9acea5
web3/providers/ipc.py
@@ -59,7 +59,7 @@ def get_ipc_socket(ipc_path: str, timeout: float = 2.0) -> socket.socket:
59
return sock
60
61
62
-class PersistantSocket:
+class PersistentSocket:
63
sock = None
64
65
def __init__(self, ipc_path: str) -> None:
@@ -157,7 +157,7 @@ def __init__(
157
158
self.timeout = timeout
159
self._lock = threading.Lock()
160
- self._socket = PersistantSocket(self.ipc_path)
+ self._socket = PersistentSocket(self.ipc_path)
161
162
def __str__(self) -> str:
163
return f"<{self.__class__.__name__} {self.ipc_path}>"
0 commit comments