test fixes

This commit is contained in:
jonesmarvin8 2026-04-08 10:03:44 -04:00
parent c54bd0a048
commit f2f51a96cc
2 changed files with 12 additions and 10 deletions

View File

@ -216,7 +216,7 @@ mod tests {
let recipient = AccountWithMetadata::new(
Account::default(),
false,
AccountId::private_account_id(&recipient_keys.npk(), Identifier(0_u128)),
AccountId::private_account_id(&recipient_keys.npk(), recipient_keys.identifier),
);
let balance_to_move: u128 = 37;
@ -246,7 +246,7 @@ mod tests {
vec![0, 2],
vec![(recipient_keys.npk(), shared_secret)],
vec![],
vec![],
vec![recipient_keys.identifier],
vec![None],
&Program::authenticated_transfer_program().into(),
)
@ -278,7 +278,7 @@ mod tests {
let sender_keys = test_private_account_keys_1();
let recipient_keys = test_private_account_keys_2();
let recipient_id =
AccountId::private_account_id(&test_private_account_keys_2().npk(), Identifier(0_u128));
AccountId::private_account_id(&recipient_keys.npk(), recipient_keys.identifier);
let sender_nonce = Nonce(0xdead_beef);
let sender_pre = AccountWithMetadata::new(
@ -289,14 +289,14 @@ mod tests {
data: Data::default(),
},
true,
AccountId::private_account_id(&sender_keys.npk(), Identifier(0_u128)),
AccountId::private_account_id(&sender_keys.npk(), sender_keys.identifier),
);
let commitment_sender = Commitment::new(&sender_pre.account_id, &sender_pre.account);
let recipient = AccountWithMetadata::new(
Account::default(),
false,
AccountId::private_account_id(&recipient_keys.npk(), Identifier(0_u128)),
AccountId::private_account_id(&recipient_keys.npk(), recipient_keys.identifier),
);
let balance_to_move: u128 = 37;
@ -348,7 +348,7 @@ mod tests {
(recipient_keys.npk(), shared_secret_2),
],
vec![sender_keys.nsk],
vec![],
vec![sender_keys.identifier, recipient_keys.identifier],
vec![commitment_set.get_proof_for(&commitment_sender), None],
&program.into(),
)
@ -386,7 +386,7 @@ mod tests {
let pre = AccountWithMetadata::new(
Account::default(),
false,
AccountId::private_account_id(&account_keys.npk(), Identifier(0_u128)),
AccountId::private_account_id(&account_keys.npk(), Identifier(42_u128)),
);
let validity_window_chain_caller = Program::validity_window_chain_caller();
@ -415,7 +415,7 @@ mod tests {
vec![2],
vec![(account_keys.npk(), shared_secret)],
vec![],
vec![],
vec![Identifier(42_u128)],
vec![None],
&program_with_deps,
);

View File

@ -198,8 +198,10 @@ pub mod tests {
let expected_view_tag = {
let mut hasher = Sha256::new();
hasher.update(b"/LEE/v0.3/ViewTag/");
hasher.update(npk.to_byte_array());
hasher.update(
b"/LEE/v0.3/ViewTag\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
);
hasher.update(account_id.to_bytes());
hasher.update(vpk.to_bytes());
let digest: [u8; 32] = hasher.finalize().into();
digest[0]