This commit is contained in:
Sergio Chouhy
2026-04-15 15:42:04 -03:00
parent a4af8da13b
commit 985f610cea
14 changed files with 51 additions and 32 deletions
+1
View File
@@ -144,6 +144,7 @@ impl InitialData {
account_id,
account: account.clone(),
key_chain: key_chain.clone(),
identifier: 0,
}))
}))
.collect()
@@ -170,7 +170,7 @@ async fn private_transfer_to_owned_account_using_claiming_path() -> Result<()> {
};
// Get the keys for the newly created account
let (to_keys, _) = ctx
let (to_keys, _, _) = ctx
.wallet()
.storage()
.user_data
@@ -336,7 +336,7 @@ async fn private_transfer_to_owned_account_continuous_run_path() -> Result<()> {
};
// Get the newly created account's keys
let (to_keys, _) = ctx
let (to_keys, _, _) = ctx
.wallet()
.storage()
.user_data
+1 -1
View File
@@ -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, _, _) = ctx
.wallet()
.storage()
.user_data
+1 -1
View File
@@ -1131,7 +1131,7 @@ async fn token_claiming_path_with_private_accounts() -> Result<()> {
};
// Get keys for foreign mint (claiming path)
let (holder_keys, _) = ctx
let (holder_keys, _, _) = ctx
.wallet()
.storage()
.user_data
+2 -2
View File
@@ -250,8 +250,8 @@ fn build_privacy_transaction() -> PrivacyPreservingTransaction {
Program::serialize_instruction(balance_to_move).unwrap(),
vec![1, 2],
vec![
(sender_npk.clone(), sender_ss),
(recipient_npk.clone(), recipient_ss),
(sender_npk.clone(), 0, sender_ss),
(recipient_npk.clone(), 0, recipient_ss),
],
vec![sender_nsk],
vec![Some(proof)],