fix(integration_tests): integration tests fix

This commit is contained in:
Pravdyvy 2026-07-20 12:26:42 +03:00
parent 7b51d0c200
commit 231c2387e0
2 changed files with 5 additions and 3 deletions

View File

@ -526,14 +526,14 @@ fn wallet_ffi_save_and_load_persistent_storage() -> Result<()> {
#[test]
fn test_wallet_ffi_list_accounts() -> Result<()> {
let password = "password_for_tests";
let ctx = BlockingTestContext::new()?;
// Create the wallet FFI and track which account IDs were created as public/private
let (wallet_ffi_handle, created_public_ids) = unsafe {
let home = tempfile::tempdir()?;
let FfiCreateWalletOutput {
wallet: handle,
mnemonic: _,
} = new_wallet_ffi_with_default_config(password)?;
} = new_wallet_ffi_with_test_context_config(&ctx, home.path())?;
let mut public_ids: Vec<[u8; 32]> = Vec::new();
// Create 5 public accounts and 5 receiving keys

View File

@ -95,6 +95,8 @@ impl MultiSequencerClient {
) -> Result<(Url, SequencerClient)> {
let mut client_list = HashMap::new();
println!("Connection data {conn_data:?}");
for SequencerConnectionData {
sequencer_addr,
basic_auth,