This commit is contained in:
Sergio Chouhy 2025-05-16 20:46:40 -03:00
parent c6a4a00fda
commit b565c65628
2 changed files with 3 additions and 13 deletions

View File

@ -5,9 +5,7 @@ use common::{merkle_tree_public::TreeHashType, nullifier::UTXONullifier, transac
use k256::AffinePoint;
use log::info;
use serde::Serialize;
use utxo::{
utxo_core::{UTXOPayload, UTXO},
};
use utxo::utxo_core::{UTXOPayload, UTXO};
use crate::key_management::{
constants_types::{CipherText, Nonce},

View File

@ -1101,11 +1101,7 @@ impl NodeCore {
.map(|new_utxo_hash| {
let acc = write_guard.acc_map.get_mut(&acc_addr).unwrap();
let new_utxo = acc
.utxos
.get(&new_utxo_hash)
.unwrap()
.clone();
let new_utxo = acc.utxos.get(&new_utxo_hash).unwrap().clone();
new_utxo.log();
info!(
@ -1555,11 +1551,7 @@ impl NodeCore {
.map(|(acc_addr_rec, new_utxo_hash)| {
let acc = write_guard.acc_map.get_mut(&acc_addr_rec).unwrap();
let new_utxo = acc
.utxos
.get(&new_utxo_hash)
.unwrap()
.clone();
let new_utxo = acc.utxos.get(&new_utxo_hash).unwrap().clone();
new_utxo.log();
info!(