@@ -201,11 +201,11 @@ fn eth_xrp_interoperable() {
201
201
ilp_address : Address :: from_str ( "example.bob.charlie" ) . unwrap ( ) ,
202
202
asset_code : "XRP" . to_string ( ) ,
203
203
asset_scale : xrp_decimals,
204
- btp_incoming_token : Some ( "charlie" . to_string ( ) ) ,
204
+ btp_incoming_token : None ,
205
205
btp_uri : None ,
206
- http_endpoint : None ,
207
- http_incoming_token : None ,
208
- http_outgoing_token : None ,
206
+ http_endpoint : Some ( format ! ( "http://localhost:{}/ilp" , node3_http ) ) ,
207
+ http_incoming_token : Some ( "charlie" . to_string ( ) ) ,
208
+ http_outgoing_token : Some ( "bob" . to_string ( ) ) ,
209
209
max_packet_amount : u64:: max_value ( ) ,
210
210
min_balance : Some ( -100 ) ,
211
211
settle_threshold : Some ( 70000 ) ,
@@ -265,9 +265,9 @@ fn eth_xrp_interoperable() {
265
265
asset_scale : xrp_decimals,
266
266
btp_incoming_token : None ,
267
267
btp_uri : None ,
268
- http_endpoint : None ,
268
+ http_endpoint : Some ( format ! ( "http://localhost:{}/ilp" , node3_http ) ) ,
269
269
http_incoming_token : Some ( "in_charlie" . to_string ( ) ) ,
270
- http_outgoing_token : None ,
270
+ http_outgoing_token : Some ( "out_charlie" . to_string ( ) ) ,
271
271
max_packet_amount : u64:: max_value ( ) ,
272
272
min_balance : None ,
273
273
settle_threshold : None ,
@@ -286,10 +286,10 @@ fn eth_xrp_interoperable() {
286
286
asset_code : "XRP" . to_string ( ) ,
287
287
asset_scale : xrp_decimals,
288
288
btp_incoming_token : None ,
289
- btp_uri : Some ( format ! ( "btp+ws://:charlie@localhost:{}" , node2_btp ) ) ,
290
- http_endpoint : None ,
291
- http_incoming_token : None ,
292
- http_outgoing_token : None ,
289
+ btp_uri : None ,
290
+ http_endpoint : Some ( format ! ( "http://localhost:{}/ilp" , node2_http ) ) ,
291
+ http_incoming_token : Some ( "bob" . to_string ( ) ) ,
292
+ http_outgoing_token : Some ( "charlie" . to_string ( ) ) ,
293
293
max_packet_amount : u64:: max_value ( ) ,
294
294
min_balance : Some ( -100_000 ) ,
295
295
settle_threshold : None ,
0 commit comments