File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -746,7 +746,7 @@ impl EventLoopHandle {
746
746
swap_id = %self . swap_id,
747
747
error = ?e,
748
748
"Failed to send transfer proof. We will retry in {} seconds" ,
749
- wait_time. as_secs_f64 ( )
749
+ wait_time. as_secs ( )
750
750
)
751
751
} ,
752
752
)
Original file line number Diff line number Diff line change @@ -427,7 +427,7 @@ impl EventLoopHandle {
427
427
tracing:: warn!(
428
428
error = ?err,
429
429
"Failed to setup swap. We will retry in {} seconds" ,
430
- wait_time. as_secs_f64 ( )
430
+ wait_time. as_secs ( )
431
431
)
432
432
} )
433
433
. await
@@ -467,7 +467,7 @@ impl EventLoopHandle {
467
467
tracing:: warn!(
468
468
error = ?err,
469
469
"Failed to request quote. We will retry in {} seconds" ,
470
- wait_time. as_secs_f64 ( )
470
+ wait_time. as_secs ( )
471
471
)
472
472
} )
473
473
. await
@@ -493,7 +493,7 @@ impl EventLoopHandle {
493
493
tracing:: warn!(
494
494
error = ?err,
495
495
"Failed to request cooperative XMR redeem. We will retry in {} seconds" ,
496
- wait_time. as_secs_f64 ( )
496
+ wait_time. as_secs ( )
497
497
)
498
498
} )
499
499
. await
@@ -526,7 +526,7 @@ impl EventLoopHandle {
526
526
tracing:: warn!(
527
527
error = ?err,
528
528
"Failed to send encrypted signature. We will retry in {} seconds" ,
529
- wait_time. as_secs_f64 ( )
529
+ wait_time. as_secs ( )
530
530
)
531
531
} )
532
532
. await
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ where
159
159
swap_id = %swap_id,
160
160
error = ?e,
161
161
"Failed to lock Monero. We will retry in {} seconds" ,
162
- wait_time. as_secs_f64 ( )
162
+ wait_time. as_secs ( )
163
163
)
164
164
} )
165
165
. await ?;
@@ -311,7 +311,7 @@ where
311
311
swap_id = %swap_id,
312
312
error = ?e,
313
313
"Failed to broadcast Bitcoin redeem transaction. We will retry in {} seconds" ,
314
- wait_time. as_secs_f64 ( )
314
+ wait_time. as_secs ( )
315
315
)
316
316
} )
317
317
. await
You can’t perform that action at this time.
0 commit comments