From 47016353b9d85328e9090e588ad76fa4981dbc35 Mon Sep 17 00:00:00 2001 From: Earle Lowe Date: Tue, 12 Nov 2024 12:29:01 -0800 Subject: [PATCH] Use *= --- chia/daemon/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chia/daemon/client.py b/chia/daemon/client.py index 624f8315ed37..9ae1a8e8d9cd 100644 --- a/chia/daemon/client.py +++ b/chia/daemon/client.py @@ -55,7 +55,7 @@ async def start(self, wait_for_start: bool = False) -> None: if not wait_for_start: break await asyncio.sleep(connect_backoff) - connect_backoff = connect_backoff * 2 + connect_backoff *= 2 if self.websocket is None or self.websocket.closed: await self.close()