mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-07-25 23:23:11 +00:00
wip
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)],
|
||||
|
||||
Reference in New Issue
Block a user