25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791 | class BackgroundTasksMixin:
"""Mixin class providing background task methods for MakerBot.
These methods run as long-lived asyncio tasks and handle periodic
maintenance operations like wallet rescanning, rate limit monitoring,
directory server reconnection, and pending transaction tracking.
"""
# -- Attributes provided by MakerBot --
running: bool
config: MakerConfig
backend: BlockchainBackend
nick: str
nick_identity: NickIdentity
directory_clients: dict[str, DirectoryClient]
current_offers: list[Offer]
listen_tasks: list[asyncio.Task[None]]
_orderbook_rate_limiter: OrderbookRateLimiter
_direct_connection_rate_limiter: DirectConnectionRateLimiter
_directory_reconnect_attempts: dict[str, int]
_all_directories_disconnected: bool
async def _periodic_rescan(self: MakerBotProtocol) -> None:
"""Background task to periodically rescan wallet and update offers.
This runs every `rescan_interval_sec` (default: 10 minutes) to:
1. Detect external transactions (deposits, Sparrow spends, etc.)
2. Update pending transaction confirmations
3. Update offers if balance changed
This allows the maker to run in the background and adapt to balance
changes without manual intervention.
"""
logger.info(
f"Starting periodic rescan task (interval: {self.config.rescan_interval_sec}s)..."
)
while self.running:
try:
await asyncio.sleep(self.config.rescan_interval_sec)
if not self.running:
break
logger.info("Periodic wallet rescan starting...")
await self._resync_wallet_and_update_offers()
except asyncio.CancelledError:
logger.info("Periodic rescan task cancelled")
break
except Exception as e:
logger.error(f"Error in periodic rescan: {e}")
logger.info("Periodic rescan task stopped")
async def _periodic_rate_limit_status(self) -> None:
"""Background task to periodically log rate limiting statistics.
This runs every hour to provide visibility into spam/abuse without
flooding logs. Shows:
- Total violations across all peers
- Currently banned peers
- Top violators (by violation count)
"""
# First log after 10 minutes (give time for initial activity)
await asyncio.sleep(600)
while self.running:
try:
stats = self._orderbook_rate_limiter.get_statistics()
# Only log if there's activity worth reporting
if stats["total_violations"] > 0 or stats["banned_peers"]:
banned_count = len(stats["banned_peers"])
banned_list = ", ".join(stats["banned_peers"][:5])
if banned_count > 5:
banned_list += f", ... and {banned_count - 5} more"
top_violators_str = ", ".join(
f"{nick}({count})" for nick, count in stats["top_violators"][:5]
)
logger.info(
f"Rate limit status: {stats['total_violations']} total violations, "
f"{banned_count} banned peer(s)"
+ (f" [{banned_list}]" if banned_count > 0 else "")
+ (
f", top violators: {top_violators_str}"
if stats["top_violators"]
else ""
)
)
# Also log direct connection rate limiter stats if any activity
direct_stats = self._direct_connection_rate_limiter.get_statistics()
if direct_stats["total_violations"] > 0 or direct_stats["banned_connections"]:
banned_count = len(direct_stats["banned_connections"])
banned_list = ", ".join(direct_stats["banned_connections"][:5])
if banned_count > 5:
banned_list += f", ... and {banned_count - 5} more"
top_violators_str = ", ".join(
f"{conn}({count})" for conn, count in direct_stats["top_violators"][:5]
)
logger.info(
f"Direct connection rate limit: {direct_stats['total_violations']} "
f"violations, {banned_count} banned connection(s)"
+ (f" [{banned_list}]" if banned_count > 0 else "")
+ (f", top: {top_violators_str}" if direct_stats["top_violators"] else "")
)
# Cleanup old entries to prevent memory growth
self._orderbook_rate_limiter.cleanup_old_entries()
self._direct_connection_rate_limiter.cleanup_old_entries()
# Log again in 1 hour
await asyncio.sleep(3600)
except asyncio.CancelledError:
logger.info("Rate limit status task cancelled")
break
except Exception as e:
logger.error(f"Error in rate limit status task: {e}")
await asyncio.sleep(3600)
logger.info("Rate limit status task stopped")
async def _periodic_directory_connection_status(self) -> None:
"""Background task to periodically log directory connection status.
This runs every 10 minutes to provide visibility into orderbook
connectivity. Shows:
- Total directory servers configured
- Currently connected servers
- Disconnected servers (if any)
"""
# First log after 5 minutes (give time for initial connection)
await asyncio.sleep(300)
while self.running:
try:
total_servers = len(self.config.directory_servers)
connected_servers = list(self.directory_clients.keys())
connected_count = len(connected_servers)
disconnected_servers = [
server
for server in self.config.directory_servers
if ("{}:{}".format(*parse_directory_address(server)) not in connected_servers)
]
if disconnected_servers:
disconnected_str = ", ".join(disconnected_servers[:5])
if len(disconnected_servers) > 5:
disconnected_str += f", ... and {len(disconnected_servers) - 5} more"
logger.warning(
f"Directory connection status: {connected_count}/{total_servers} "
f"connected. Disconnected: [{disconnected_str}]"
)
else:
logger.info(
f"Directory connection status: {connected_count}/{total_servers} connected "
f"[{', '.join(connected_servers)}]"
)
# Log again in 10 minutes
await asyncio.sleep(600)
except asyncio.CancelledError:
logger.info("Directory connection status task cancelled")
break
except Exception as e:
logger.error(f"Error in directory connection status task: {e}")
await asyncio.sleep(600)
logger.info("Directory connection status task stopped")
async def _connect_to_directory(self, dir_server: str) -> tuple[str, DirectoryClient] | None:
"""
Connect to a single directory server.
Args:
dir_server: Server address in format "host:port" or "host"
Returns:
Tuple of (node_id, client) if successful, None on failure
"""
try:
host, port = parse_directory_address(dir_server)
node_id = f"{host}:{port}"
# Determine location for handshake
onion_host = self.config.onion_host
if onion_host:
location = f"{onion_host}:{self.config.onion_serving_port}"
else:
location = "NOT-SERVING-ONION"
# Check neutrino compatibility
neutrino_compat = self.backend.can_provide_neutrino_metadata()
# Create DirectoryClient with SOCKS config for Tor connections
dir_username: str | None = None
dir_password: str | None = None
if self.config.stream_isolation:
from jmcore.tor_isolation import IsolationCategory, get_isolation_credentials
dir_creds = get_isolation_credentials(IsolationCategory.DIRECTORY)
dir_username = dir_creds.username
dir_password = dir_creds.password
client = DirectoryClient(
host=host,
port=port,
network=self.config.network.value,
nick_identity=self.nick_identity,
location=location,
socks_host=self.config.socks_host,
socks_port=self.config.socks_port,
timeout=self.config.connection_timeout,
neutrino_compat=neutrino_compat,
socks_username=dir_username,
socks_password=dir_password,
)
await client.connect()
return (node_id, client)
except Exception as e:
logger.debug(f"Failed to connect to {dir_server}: {e}")
return None
async def _connect_to_directories_with_retry(self: MakerBotProtocol) -> None:
"""
Connect to all configured directory servers with startup retry logic.
Tor may still be bootstrapping circuits when the maker starts. This
method retries failed connections with exponential back-off until at
least one directory is reachable. Directories that connect on the
first attempt are registered immediately; the retry loop only keeps
going while *no* directory is connected.
The loop is bounded by ``directory_startup_timeout`` seconds (default
120 s) so the bot does not wait forever for an unreachable network.
On timeout the method returns without raising; the background
``_periodic_directory_reconnect`` task will keep retrying once the bot
is running.
"""
timeout = self.config.directory_startup_timeout
max_delay = 30.0
delay = 5.0
deadline = asyncio.get_event_loop().time() + timeout
attempt = 0
while True:
attempt += 1
for dir_server in self.config.directory_servers:
node_id_str = dir_server # for logging before parse
try:
host, port = parse_directory_address(dir_server)
node_id_str = f"{host}:{port}"
except Exception:
pass
if node_id_str in self.directory_clients:
continue # already connected on a previous attempt
result = await self._connect_to_directory(dir_server)
if result:
node_id, client = result
self.directory_clients[node_id] = client
logger.info(f"Connected to directory: {dir_server}")
else:
logger.warning(
f"Could not connect to {dir_server} (attempt {attempt}), "
"Tor may still be bootstrapping"
)
if self.directory_clients:
# At least one directory connected — done.
return
remaining = deadline - asyncio.get_event_loop().time()
if remaining <= 0:
logger.error(
f"Failed to connect to any directory server after {timeout}s. "
"The bot will continue and retry in the background."
)
return
wait = min(delay, remaining)
logger.info(f"Retrying directory connections in {wait:.0f}s...")
await asyncio.sleep(wait)
delay = min(delay * 1.5, max_delay)
async def _periodic_directory_reconnect(self: MakerBotProtocol) -> None:
"""
Background task to periodically reconnect to failed directory servers.
Attempts to reconnect to disconnected directories at configured intervals.
On successful reconnection:
- Starts a listener task for the directory
- Announces current offers to the newly connected directory
"""
# Wait for initial connections to settle
await asyncio.sleep(60)
logger.info(
f"Directory reconnection task started "
f"(interval: {self.config.directory_reconnect_interval}s)"
)
while self.running:
try:
await asyncio.sleep(self.config.directory_reconnect_interval)
# Find disconnected directories
connected_servers = set(self.directory_clients.keys())
disconnected_servers = []
for server in self.config.directory_servers:
host, port = parse_directory_address(server)
node_id = f"{host}:{port}"
if node_id not in connected_servers:
disconnected_servers.append((server, node_id))
if not disconnected_servers:
continue
logger.info(
f"Attempting to reconnect to {len(disconnected_servers)} "
f"disconnected director{'y' if len(disconnected_servers) == 1 else 'ies'}..."
)
for dir_server, node_id in disconnected_servers:
# Check retry limit
max_retries = self.config.directory_reconnect_max_retries
attempts = self._directory_reconnect_attempts.get(node_id, 0)
if max_retries > 0 and attempts >= max_retries:
logger.debug(f"Skipping {node_id}: max retries ({max_retries}) reached")
continue
# Attempt reconnection
result = await self._connect_to_directory(dir_server)
if result:
new_node_id, client = result
self.directory_clients[new_node_id] = client
# Reset retry counter on success
self._directory_reconnect_attempts.pop(node_id, None)
logger.info(f"Reconnected to directory: {dir_server}")
# Announce offers to newly connected directory
for offer in self.current_offers:
try:
offer_msg = self._format_offer_announcement(
offer, include_bond=False
)
await client.send_public_message(offer_msg)
except Exception as e:
logger.warning(f"Failed to announce offer to {new_node_id}: {e}")
# Start listener task
task = asyncio.create_task(self._listen_client(new_node_id, client))
self.listen_tasks.append(task)
# Notify reconnection
connected_count = len(self.directory_clients)
total_count = len(self.config.directory_servers)
asyncio.create_task(
get_notifier().notify_directory_reconnect(
new_node_id, connected_count, total_count
)
)
# If all directories were previously disconnected, send a recovery alert
if self._all_directories_disconnected:
self._all_directories_disconnected = False
asyncio.create_task(
get_notifier().notify_all_directories_reconnected(
connected_count, total_count
)
)
else:
# Increment retry counter
self._directory_reconnect_attempts[node_id] = attempts + 1
logger.debug(
f"Reconnection to {dir_server} failed "
f"(attempt {attempts + 1}"
f"{f'/{max_retries}' if max_retries > 0 else ''})"
)
except asyncio.CancelledError:
logger.info("Directory reconnection task cancelled")
break
except Exception as e:
logger.error(f"Error in directory reconnection task: {e}")
logger.info("Directory reconnection task stopped")
async def _monitor_pending_transactions(self) -> None:
"""
Background task to monitor pending transactions and update their status.
Checks pending transactions every 60 seconds and updates their confirmation
status in the history file. Transactions are marked as successful once they
receive their first confirmation.
"""
logger.info("Starting pending transaction monitor...")
check_interval = 60.0 # Check every 60 seconds
while self.running:
try:
await asyncio.sleep(check_interval)
await self._update_pending_history()
except asyncio.CancelledError:
logger.info("Pending transaction monitor cancelled")
break
except Exception as e:
logger.error(f"Error in pending transaction monitor: {e}")
logger.info("Pending transaction monitor stopped")
async def _update_pending_history(self) -> None:
"""Check and update pending transaction confirmations in history.
For entries without txid, attempts to discover the txid by checking
if the destination address has received funds.
Transactions that remain pending longer than pending_tx_timeout_min
are marked as failed (taker likely never broadcast the transaction).
"""
from datetime import datetime
from jmwallet.history import (
get_pending_transactions,
mark_pending_transaction_failed,
update_pending_transaction_txid,
update_transaction_confirmation_with_detection,
)
pending = get_pending_transactions(data_dir=self.config.data_dir)
if not pending:
return
logger.debug(f"Checking {len(pending)} pending transaction(s)...")
timeout_minutes = self.config.pending_tx_timeout_min
for entry in pending:
try:
# Calculate age of the pending transaction
timestamp = datetime.fromisoformat(entry.timestamp)
age_minutes = (datetime.now() - timestamp).total_seconds() / 60
# If entry has no txid, try to discover it from the blockchain
if not entry.txid:
if entry.destination_address:
logger.debug(
f"Attempting to discover txid for pending entry "
f"(dest: {entry.destination_address[:20]}...)"
)
# Look for the txid that paid to our CoinJoin address
txid = await self._discover_txid_for_address(entry.destination_address)
if txid:
update_pending_transaction_txid(
destination_address=entry.destination_address,
txid=txid,
data_dir=self.config.data_dir,
)
logger.info(
f"Discovered txid {txid[:16]}... for address "
f"{entry.destination_address[:20]}..."
)
# Update entry for confirmation check below
entry.txid = txid
elif age_minutes >= timeout_minutes:
# Timed out waiting for taker to broadcast
mark_pending_transaction_failed(
destination_address=entry.destination_address,
failure_reason=(
f"Timed out after {int(age_minutes)} minutes - "
"taker never broadcast transaction"
),
data_dir=self.config.data_dir,
)
continue
else:
logger.debug(
f"No UTXO found for {entry.destination_address[:20]}... "
f"(tx may not be confirmed yet, age: {age_minutes:.1f}m)"
)
continue
else:
logger.debug("Pending entry has no txid and no destination address")
continue
# Check if transaction exists and get confirmations
tx_info = await self.backend.get_transaction(entry.txid)
if tx_info is None:
# Transaction not found - might have been rejected/replaced
# or never made it to the mempool
if age_minutes >= timeout_minutes:
# Mark as failed - tx was never broadcast or got dropped
mark_pending_transaction_failed(
destination_address=entry.destination_address,
failure_reason=(
f"Transaction {entry.txid[:16]}... not found after "
f"{int(age_minutes)} minutes - likely never broadcast"
),
data_dir=self.config.data_dir,
txid=entry.txid,
)
elif age_minutes > 30:
# Log warning after 30 minutes
logger.warning(
f"Transaction {entry.txid[:16]}... not found after "
f"{age_minutes:.1f} minutes"
)
continue
confirmations = tx_info.confirmations
# Mark as successful once it gets first confirmation
if confirmations > 0 and entry.confirmations == 0:
logger.info(
f"Transaction {entry.txid[:16]}... confirmed "
f"({confirmations} confirmation(s))"
)
await update_transaction_confirmation_with_detection(
txid=entry.txid,
confirmations=confirmations,
backend=self.backend,
data_dir=self.config.data_dir,
)
except Exception as e:
txid_str = entry.txid[:16] if entry.txid else "unknown"
logger.debug(f"Error checking transaction {txid_str}...: {e}")
async def _discover_txid_for_address(self, address: str) -> str | None:
"""Try to discover the txid for a transaction that paid to an address.
This is used when a maker history entry doesn't have a txid recorded
(e.g., from older versions or if the txid wasn't captured).
Args:
address: The destination address to check
Returns:
Transaction ID if found, None otherwise
"""
try:
# Get UTXOs for this address - if there are any, the first one's txid
# is likely our CoinJoin (assuming fresh addresses are used)
utxos = await self.backend.get_utxos([address])
if utxos:
# Return the txid of the first (and likely only) UTXO
return utxos[0].txid
return None
except Exception as e:
logger.debug(f"Error discovering txid for {address[:20]}...: {e}")
return None
async def _deferred_wallet_resync(self: MakerBotProtocol) -> None:
"""Resync wallet in background after a CoinJoin completes."""
try:
# Small delay to allow transaction to propagate
await asyncio.sleep(2)
logger.info("Performing deferred wallet resync after CoinJoin...")
await self._resync_wallet_and_update_offers()
except Exception as e:
logger.error(f"Error in deferred wallet resync: {e}")
async def _listen_client(self: MakerBotProtocol, node_id: str, client: DirectoryClient) -> None:
"""Listen for messages from a specific directory client"""
logger.info(f"Started listening on {node_id}")
# Track last cleanup time
last_cleanup = asyncio.get_event_loop().time()
cleanup_interval = 60.0 # Clean up timed-out sessions every 60 seconds
# Track consecutive errors for exponential backoff
consecutive_errors = 0
max_consecutive_errors = 10
while self.running:
try:
# Use listen_for_messages with short duration to check running flag frequently
messages = await client.listen_for_messages(duration=1.0)
if messages:
logger.debug(f"Received {len(messages)} messages from {node_id}")
for message in messages:
await self._handle_message(message, source=f"dir:{node_id}")
# Periodic cleanup of timed-out sessions
now = asyncio.get_event_loop().time()
if now - last_cleanup > cleanup_interval:
self._cleanup_timed_out_sessions()
last_cleanup = now
# Reset error counter on successful iteration
consecutive_errors = 0
except asyncio.CancelledError:
logger.info(f"Listener for {node_id} cancelled")
break
except DirectoryClientError as e:
# Connection lost - remove from directory_clients so reconnection task can handle it
logger.warning(f"Connection lost on {node_id}: {e}")
# Remove from connected clients
self.directory_clients.pop(node_id, None)
# Close the client gracefully
try:
await client.close()
except Exception:
pass
# Fire-and-forget notification for directory disconnect
connected_count = len(self.directory_clients)
total_count = len(self.config.directory_servers)
asyncio.create_task(
get_notifier().notify_directory_disconnect(
node_id, connected_count, total_count, reconnecting=True
)
)
if connected_count == 0:
self._all_directories_disconnected = True
asyncio.create_task(get_notifier().notify_all_directories_disconnected())
break
except Exception as e:
consecutive_errors += 1
backoff = min(2**consecutive_errors, 60.0)
logger.error(
f"Error listening on {node_id} (consecutive: {consecutive_errors}): {e}"
)
if consecutive_errors >= max_consecutive_errors:
logger.error(
f"Too many consecutive errors on {node_id}, disconnecting for reconnection"
)
self.directory_clients.pop(node_id, None)
try:
await client.close()
except Exception:
pass
break
await asyncio.sleep(backoff)
logger.info(f"Stopped listening on {node_id}")
async def _periodic_summary(self: MakerBotProtocol) -> None:
"""Background task to periodically send summary notifications.
Sends a notification with CoinJoin stats for the configured period
(e.g., daily or weekly). Only runs when notify_summary is enabled.
When ``check_for_updates`` is enabled, the latest release version is
fetched from GitHub (routed through Tor if configured) and included in
the summary notification.
"""
from jmcore.version import check_for_updates_from_github, get_version
from jmwallet.history import get_history_stats_for_period
notifier = get_notifier()
interval_hours = notifier.config.summary_interval_hours
interval_seconds = interval_hours * 3600
if interval_hours == 24:
period_label = "Daily"
elif interval_hours == 168:
period_label = "Weekly"
elif interval_hours == 1:
period_label = "Hourly"
else:
period_label = f"{interval_hours}-Hour"
logger.info(f"Starting periodic summary task ({period_label}, every {interval_hours}h)...")
while self.running:
try:
await asyncio.sleep(interval_seconds)
if not self.running:
break
logger.debug(f"Collecting {period_label.lower()} summary stats...")
stats = get_history_stats_for_period(
hours=interval_hours,
role_filter="maker",
data_dir=self.config.data_dir,
)
logger.info(
f"{period_label} summary: "
f"coinjoins={int(stats['total_coinjoins'])}, "
f"successful={int(stats['successful_coinjoins'])}, "
f"failed={int(stats['failed_coinjoins'])}, "
f"fees={int(stats['total_fees_earned'])} sats, "
f"volume={int(stats['successful_volume'])}"
f"/{int(stats['total_volume'])} sats, "
f"utxos_disclosed={int(stats['utxos_disclosed'])}"
)
# Check for updates if enabled
current_version: str | None = None
update_available: str | None = None
if notifier.config.check_for_updates:
current_version = get_version()
socks_proxy: str | None = None
if notifier.config.use_tor:
if notifier.config.stream_isolation:
from jmcore.tor_isolation import (
IsolationCategory,
build_isolated_proxy_url,
)
socks_proxy = build_isolated_proxy_url(
notifier.config.tor_socks_host,
notifier.config.tor_socks_port,
IsolationCategory.UPDATE_CHECK,
)
else:
socks_proxy = (
f"socks5h://{notifier.config.tor_socks_host}"
f":{notifier.config.tor_socks_port}"
)
result = await check_for_updates_from_github(
socks_proxy=socks_proxy,
)
if result and result.is_newer:
update_available = result.latest_version
logger.info(
f"Update available: {result.latest_version} "
f"(current: {current_version})"
)
sent = await notifier.notify_summary(
period_label=period_label,
total_requests=int(stats["total_coinjoins"]),
successful=int(stats["successful_coinjoins"]),
failed=int(stats["failed_coinjoins"]),
total_earnings=int(stats["total_fees_earned"]),
total_volume=int(stats["total_volume"]),
successful_volume=int(stats["successful_volume"]),
utxos_disclosed=int(stats["utxos_disclosed"]),
version=current_version,
update_available=update_available,
)
if sent:
logger.debug(f"{period_label} summary notification sent")
else:
logger.warning(f"{period_label} summary notification failed to send")
except asyncio.CancelledError:
logger.info("Periodic summary task cancelled")
break
except Exception as e:
logger.error(f"Error in periodic summary: {e}")
logger.info("Periodic summary task stopped")
|