fmt and artifacts

This commit is contained in:
jonesmarvin8 2026-02-25 17:37:49 -05:00
parent 82966e652d
commit 6209317cd4
4 changed files with 1282 additions and 1285 deletions

Binary file not shown.

View File

@ -308,15 +308,16 @@ impl V02State {
#[cfg(any(test, feature = "test-utils"))]
impl V02State {
pub fn force_insert_account(&mut self, account_id: AccountId, account: Account) {
self.public_state.insert(account_id, account);
}
pub fn force_insert_account(&mut self, account_id: AccountId, account: Account) {
self.public_state.insert(account_id, account);
}
}
#[cfg(test)]
pub mod tests {
use std::collections::HashMap;
use nssa_core::{
Commitment, Nullifier, NullifierPublicKey, NullifierSecretKey, SharedSecretKey,
account::{Account, AccountId, AccountWithMetadata, Nonce, data::Data},
@ -537,8 +538,6 @@ pub mod tests {
}
impl V02State {
/// Include test programs in the builtin programs map
pub fn with_test_programs(mut self) -> Self {
self.insert_program(Program::nonce_changer_program());

File diff suppressed because it is too large Load Diff

View File

@ -7,5 +7,5 @@ pub mod new_definition;
pub mod remove;
pub mod swap;
mod full_tests;
mod tests;
mod full_tests;