Skip to content

Commit

Permalink
fix FFI cucumber integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
hansieodendaal committed Sep 13, 2024
1 parent 8c98ed9 commit 6a796f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base_layer/wallet_ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ use tari_common_types::{
};
use tari_comms::{
multiaddr::Multiaddr,
net_address::IP4_TCP_TEST_ADDR_RANGE,
peer_manager::{NodeIdentity, PeerQuery},
transports::MemoryTransport,
types::CommsPublicKey,
Expand Down Expand Up @@ -5328,7 +5327,8 @@ pub unsafe extern "C" fn comms_config_create(
minimum_desired_tcpv4_node_ratio: 0.0,
..Default::default()
},
excluded_dial_addresses: vec![IP4_TCP_TEST_ADDR_RANGE.parse().expect("valid address range")].into(),
// FIXME: This should be set to 'IP4_TCP_TEST_ADDR_RANGE', but cucumber tests need to use that range
excluded_dial_addresses: vec![].into(),
..Default::default()
},
allow_test_addresses: true,
Expand Down

0 comments on commit 6a796f3

Please sign in to comment.