Skip to content

Commit acc24ae

Browse files
committed
chore: cargo fmt
1 parent e453aa6 commit acc24ae

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/interledger-stream/src/client.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ use interledger_packet::{
1212
};
1313
use interledger_service::*;
1414
use log::{debug, error, warn};
15+
use pin_project::{pin_project, project};
1516
use serde::{Deserialize, Serialize};
1617
use std::{
1718
cell::Cell,
@@ -24,7 +25,6 @@ use std::{
2425
pin::Pin,
2526
task::{Context, Poll},
2627
};
27-
use pin_project::{pin_project, project};
2828

2929
/// Maximum time we should wait since last fulfill before we error out to avoid
3030
/// getting into an infinite loop of sending packets and effectively DoSing ourselves
@@ -181,7 +181,6 @@ where
181181
S: IncomingService<A> + Clone + 'static,
182182
A: Account + 'static,
183183
{
184-
185184
/// Fire off requests until the congestion controller tells us to stop or we've sent the total amount or maximum time since last fulfill has elapsed
186185
fn try_send_money(&mut self) -> Result<bool, Error> {
187186
let mut sent_packets = false;

0 commit comments

Comments
 (0)