mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-03 13:53:12 +00:00
fmt
This commit is contained in:
parent
c6a4a00fda
commit
6aa6c9d34f
@ -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},
|
||||
|
||||
@ -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!(
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user