From 145198a078280c33902430497e510f092cfc07d8 Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Tue, 21 Apr 2026 21:32:47 -0300 Subject: [PATCH] fix test --- integration_tests/tests/keys_restoration.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration_tests/tests/keys_restoration.rs b/integration_tests/tests/keys_restoration.rs index 2588e7d9..e08c4134 100644 --- a/integration_tests/tests/keys_restoration.rs +++ b/integration_tests/tests/keys_restoration.rs @@ -59,7 +59,7 @@ async fn sync_private_account_with_non_zero_chain_index() -> Result<()> { }; // Get the keys for the newly created account - let (to_keys, _, _) = ctx + let (to_keys, _, to_identifier) = ctx .wallet() .storage() .user_data @@ -74,7 +74,7 @@ async fn sync_private_account_with_non_zero_chain_index() -> Result<()> { to_label: None, to_npk: Some(hex::encode(to_keys.nullifier_public_key.0)), to_vpk: Some(hex::encode(to_keys.viewing_public_key.0)), - to_identifier: 0, + to_identifier, amount: 100, });