@@ -257,6 +257,10 @@ where
257
257
final_value_msat : invoice. amount_milli_satoshis ( ) . or ( amount_msats) . unwrap ( ) ,
258
258
final_cltv_expiry_delta : invoice. min_final_cltv_expiry ( ) as u32 ,
259
259
} ;
260
+ if has_expired ( & params) {
261
+ log_trace ! ( self . logger, "Invoice expired prior to first send for payment {}" , log_bytes!( payment_hash. 0 ) ) ;
262
+ return Err ( PaymentError :: Invoice ( "Invoice expired prior to send" ) ) ;
263
+ }
260
264
let first_hops = self . payer . first_hops ( ) ;
261
265
let route = self . router . find_route (
262
266
& payer,
@@ -505,6 +509,25 @@ mod tests {
505
509
. unwrap ( )
506
510
}
507
511
512
+ fn will_expire_in_1_sec_invoice ( payment_preimage : PaymentPreimage ) -> Invoice {
513
+ let payment_hash = Sha256 :: hash ( & payment_preimage. 0 ) ;
514
+ let private_key = SecretKey :: from_slice ( & [ 42 ; 32 ] ) . unwrap ( ) ;
515
+ let timestamp = SystemTime :: now ( )
516
+ . checked_sub ( Duration :: from_secs ( DEFAULT_EXPIRY_TIME - 1 ) )
517
+ . unwrap ( ) ;
518
+ InvoiceBuilder :: new ( Currency :: Bitcoin )
519
+ . description ( "test" . into ( ) )
520
+ . payment_hash ( payment_hash)
521
+ . payment_secret ( PaymentSecret ( [ 0 ; 32 ] ) )
522
+ . timestamp ( timestamp)
523
+ . min_final_cltv_expiry ( 144 )
524
+ . amount_milli_satoshis ( 128 )
525
+ . build_signed ( |hash| {
526
+ Secp256k1 :: new ( ) . sign_recoverable ( hash, & private_key)
527
+ } )
528
+ . unwrap ( )
529
+ }
530
+
508
531
#[ test]
509
532
fn pays_invoice_on_first_attempt ( ) {
510
533
let event_handled = core:: cell:: RefCell :: new ( false ) ;
@@ -720,7 +743,26 @@ mod tests {
720
743
721
744
let payment_preimage = PaymentPreimage ( [ 1 ; 32 ] ) ;
722
745
let invoice = expired_invoice ( payment_preimage) ;
746
+ if let PaymentError :: Invoice ( msg) = invoice_payer. pay_invoice ( & invoice) . unwrap_err ( ) {
747
+ assert_eq ! ( msg, "Invoice expired prior to send" ) ;
748
+ } else { panic ! ( "Expected Invoice Error" ) ; }
749
+ }
750
+
751
+ #[ test]
752
+ fn fails_retrying_invoice_after_expiration ( ) {
753
+ let event_handled = core:: cell:: RefCell :: new ( false ) ;
754
+ let event_handler = |_: & _ | { * event_handled. borrow_mut ( ) = true ; } ;
755
+
756
+ let payer = TestPayer :: new ( ) ;
757
+ let router = TestRouter { } ;
758
+ let logger = TestLogger :: new ( ) ;
759
+ let invoice_payer =
760
+ InvoicePayer :: new ( & payer, router, & logger, event_handler, RetryAttempts ( 2 ) ) ;
761
+
762
+ let payment_preimage = PaymentPreimage ( [ 1 ; 32 ] ) ;
763
+ let invoice = will_expire_in_1_sec_invoice ( payment_preimage) ;
723
764
let payment_id = Some ( invoice_payer. pay_invoice ( & invoice) . unwrap ( ) ) ;
765
+ std:: thread:: sleep ( Duration :: from_secs ( 2 ) ) ;
724
766
assert_eq ! ( * payer. attempts. borrow( ) , 1 ) ;
725
767
726
768
let event = Event :: PaymentPathFailed {
0 commit comments