@@ -144,7 +144,7 @@ fn eth_xrp_interoperable() {
144
144
http_incoming_token : Some ( "bob" . to_string ( ) ) ,
145
145
http_outgoing_token : Some ( "alice" . to_string ( ) ) ,
146
146
max_packet_amount : u64:: max_value ( ) ,
147
- min_balance : Some ( -100000 ) ,
147
+ min_balance : Some ( -100_000 ) ,
148
148
settle_threshold : Some ( 70000 ) ,
149
149
settle_to : Some ( -1000 ) ,
150
150
send_routes : true ,
@@ -186,7 +186,7 @@ fn eth_xrp_interoperable() {
186
186
http_incoming_token : Some ( "alice" . to_string ( ) ) ,
187
187
http_outgoing_token : Some ( "bob" . to_string ( ) ) ,
188
188
max_packet_amount : u64:: max_value ( ) ,
189
- min_balance : Some ( -100000 ) ,
189
+ min_balance : Some ( -100_000 ) ,
190
190
settle_threshold : None ,
191
191
settle_to : None ,
192
192
send_routes : true ,
@@ -203,11 +203,11 @@ fn eth_xrp_interoperable() {
203
203
ilp_address : Address :: from_str ( "example.bob.charlie" ) . unwrap ( ) ,
204
204
asset_code : "XRP" . to_string ( ) ,
205
205
asset_scale : XRP_DECIMALS ,
206
- btp_incoming_token : None ,
206
+ btp_incoming_token : Some ( "charlie" . to_string ( ) ) ,
207
207
btp_uri : None ,
208
- http_endpoint : Some ( format ! ( "http://localhost:{}/ilp" , node3_http ) ) ,
209
- http_incoming_token : Some ( "charlie" . to_string ( ) ) ,
210
- http_outgoing_token : Some ( "bob" . to_string ( ) ) ,
208
+ http_endpoint : None ,
209
+ http_incoming_token : None ,
210
+ http_outgoing_token : None ,
211
211
max_packet_amount : u64:: max_value ( ) ,
212
212
min_balance : Some ( -100 ) ,
213
213
settle_threshold : Some ( 70000 ) ,
@@ -268,9 +268,9 @@ fn eth_xrp_interoperable() {
268
268
asset_scale : XRP_DECIMALS ,
269
269
btp_incoming_token : None ,
270
270
btp_uri : None ,
271
- http_endpoint : Some ( format ! ( "http://localhost:{}/ilp" , node3_http ) ) ,
271
+ http_endpoint : None ,
272
272
http_incoming_token : Some ( "in_charlie" . to_string ( ) ) ,
273
- http_outgoing_token : Some ( "out_charlie" . to_string ( ) ) ,
273
+ http_outgoing_token : None ,
274
274
max_packet_amount : u64:: max_value ( ) ,
275
275
min_balance : None ,
276
276
settle_threshold : None ,
@@ -290,12 +290,12 @@ fn eth_xrp_interoperable() {
290
290
asset_code : "XRP" . to_string ( ) ,
291
291
asset_scale : XRP_DECIMALS ,
292
292
btp_incoming_token : None ,
293
- btp_uri : None ,
294
- http_endpoint : Some ( format ! ( "http://localhost:{}/ilp" , node2_http ) ) ,
295
- http_incoming_token : Some ( "bob" . to_string ( ) ) ,
296
- http_outgoing_token : Some ( "charlie" . to_string ( ) ) ,
293
+ btp_uri : Some ( format ! ( "btp+ws://:charlie@localhost:{}" , node2_btp ) ) ,
294
+ http_endpoint : None ,
295
+ http_incoming_token : None ,
296
+ http_outgoing_token : None ,
297
297
max_packet_amount : u64:: max_value ( ) ,
298
- min_balance : Some ( -100000 ) ,
298
+ min_balance : Some ( -100_000 ) ,
299
299
settle_threshold : None ,
300
300
settle_to : None ,
301
301
send_routes : true ,
0 commit comments