mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-07-22 07:40:18 +00:00
fix(integration_tests): integration tests fix
This commit is contained in:
parent
7b51d0c200
commit
231c2387e0
@ -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
|
||||
|
||||
@ -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,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user