File tree 1 file changed +3
-3
lines changed
crates/interledger-api/src/routes
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -423,7 +423,7 @@ where
423
423
424
424
// GET /accounts/:username/spsp
425
425
let server_secret_clone = server_secret. clone ( ) ;
426
- let get_spsp_without_tracking = warp:: get ( )
426
+ let get_spsp = warp:: get ( )
427
427
. and ( warp:: path ( "accounts" ) )
428
428
. and ( account_username_to_id. clone ( ) )
429
429
. and ( warp:: path ( "spsp" ) )
@@ -446,7 +446,7 @@ where
446
446
447
447
// GET /accounts/:username/spsp/tracking_info
448
448
let server_secret_clone = server_secret. clone ( ) ;
449
- let get_spsp = warp:: get ( )
449
+ let get_spsp_with_tracking = warp:: get ( )
450
450
. and ( warp:: path ( "accounts" ) )
451
451
. and ( account_username_to_id)
452
452
. and ( warp:: path ( "spsp" ) )
@@ -525,7 +525,7 @@ where
525
525
// See `combine!` docs for more details.
526
526
combine ! (
527
527
get_spsp,
528
- get_spsp_without_tracking ,
528
+ get_spsp_with_tracking ,
529
529
get_spsp_well_known,
530
530
post_accounts,
531
531
get_accounts,
You can’t perform that action at this time.
0 commit comments