Skip to content

Commit 56237a6

Browse files
committed
Revert "test(eth-xrp): Switch back to BTP"
This reverts commit 36a3732.
1 parent ca46d74 commit 56237a6

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

crates/interledger-settlement-engines/tests/eth_xrp_interoperable.rs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,11 @@ fn eth_xrp_interoperable() {
201201
ilp_address: Address::from_str("example.bob.charlie").unwrap(),
202202
asset_code: "XRP".to_string(),
203203
asset_scale: xrp_decimals,
204-
btp_incoming_token: Some("charlie".to_string()),
204+
btp_incoming_token: None,
205205
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()),
209209
max_packet_amount: u64::max_value(),
210210
min_balance: Some(-100),
211211
settle_threshold: Some(70000),
@@ -265,9 +265,9 @@ fn eth_xrp_interoperable() {
265265
asset_scale: xrp_decimals,
266266
btp_incoming_token: None,
267267
btp_uri: None,
268-
http_endpoint: None,
268+
http_endpoint: Some(format!("http://localhost:{}/ilp", node3_http)),
269269
http_incoming_token: Some("in_charlie".to_string()),
270-
http_outgoing_token: None,
270+
http_outgoing_token: Some("out_charlie".to_string()),
271271
max_packet_amount: u64::max_value(),
272272
min_balance: None,
273273
settle_threshold: None,
@@ -286,10 +286,10 @@ fn eth_xrp_interoperable() {
286286
asset_code: "XRP".to_string(),
287287
asset_scale: xrp_decimals,
288288
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()),
293293
max_packet_amount: u64::max_value(),
294294
min_balance: Some(-100_000),
295295
settle_threshold: None,

0 commit comments

Comments
 (0)