File tree 1 file changed +1
-2
lines changed
crates/interledger-stream/src
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ use interledger_packet::{
12
12
} ;
13
13
use interledger_service:: * ;
14
14
use log:: { debug, error, warn} ;
15
+ use pin_project:: { pin_project, project} ;
15
16
use serde:: { Deserialize , Serialize } ;
16
17
use std:: {
17
18
cell:: Cell ,
@@ -24,7 +25,6 @@ use std::{
24
25
pin:: Pin ,
25
26
task:: { Context , Poll } ,
26
27
} ;
27
- use pin_project:: { pin_project, project} ;
28
28
29
29
/// Maximum time we should wait since last fulfill before we error out to avoid
30
30
/// getting into an infinite loop of sending packets and effectively DoSing ourselves
@@ -181,7 +181,6 @@ where
181
181
S : IncomingService < A > + Clone + ' static ,
182
182
A : Account + ' static ,
183
183
{
184
-
185
184
/// 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
186
185
fn try_send_money ( & mut self ) -> Result < bool , Error > {
187
186
let mut sent_packets = false ;
You can’t perform that action at this time.
0 commit comments