fix merge fix

This commit is contained in:
Oleksandr Pravdyvyi 2025-09-10 13:52:28 +03:00
parent 4a3af34c6a
commit 65dfbd8bbb
No known key found for this signature in database
GPG Key ID: 9F8955C63C443871
3 changed files with 2 additions and 3 deletions

View File

@ -1,5 +1,5 @@
use aes_gcm::{Aes256Gcm, KeyInit, aead::Aead};
use common::merkle_tree_public::TreeHashType;
use common::TreeHashType;
use elliptic_curve::group::GroupEncoding;
use elliptic_curve::point::AffineCoordinates;
use k256::AffinePoint;

View File

@ -1,5 +1,5 @@
use bip39::Mnemonic;
use common::merkle_tree_public::TreeHashType;
use common::TreeHashType;
use elliptic_curve::PrimeField;
use k256::{AffinePoint, Scalar};
use rand::{RngCore, rngs::OsRng};

View File

@ -21,7 +21,6 @@ impl WalletChainStore {
Ok(Self {
user_data: NSSAUserData::new_with_accounts(accounts_keys, HashMap::new())?,
utxo_commitments_store,
wallet_config: config,
})
}