fix build CI

This commit is contained in:
Rostyslav Tyshko 2025-05-30 15:38:48 -04:00
parent 4d7cda0001
commit baf43f9780
3 changed files with 3 additions and 6 deletions

View File

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

View File

@ -8,14 +8,12 @@ use anyhow::Result;
use block_store::NodeBlockStore; use block_store::NodeBlockStore;
use common::{ use common::{
block::Block, block::Block,
commitment,
merkle_tree_public::merkle_tree::{PublicTransactionMerkleTree, UTXOCommitmentsMerkleTree}, merkle_tree_public::merkle_tree::{PublicTransactionMerkleTree, UTXOCommitmentsMerkleTree},
nullifier::{self, UTXONullifier}, nullifier::UTXONullifier,
utxo_commitment::UTXOCommitment, utxo_commitment::UTXOCommitment,
}; };
use k256::{pkcs8::der::asn1::Null, AffinePoint}; use k256::AffinePoint;
use public_context::PublicSCContext; use public_context::PublicSCContext;
use sc_core::transaction_payloads_tools;
use utxo::utxo_core::UTXO; use utxo::utxo_core::UTXO;
use crate::ActionData; use crate::ActionData;

View File

@ -2,7 +2,6 @@ use std::{path::Path, sync::Arc};
use common::block::Block; use common::block::Block;
use error::DbError; use error::DbError;
use log::warn;
use rocksdb::{ use rocksdb::{
BoundColumnFamily, ColumnFamilyDescriptor, DBWithThreadMode, MultiThreaded, Options, BoundColumnFamily, ColumnFamilyDescriptor, DBWithThreadMode, MultiThreaded, Options,
}; };