Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
use crate::drive::saved_block_transactions::COMPACTED_NULLIFIERS_KEY_U8;
use crate::drive::Drive;
use crate::drive::RootTree;
use crate::error::proof::ProofError;
use crate::error::Error;
use crate::verify::RootHash;

/// The subtree key for compacted nullifiers storage as u8
const COMPACTED_NULLIFIERS_KEY_U8: u8 = b'o';
use grovedb::operations::proof::{GroveDBProof, ProofBytes};
use grovedb::{
GroveDb, MerkProofDecoder, MerkProofNode, MerkProofOp, PathQuery, Query, SizedQuery,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
use crate::drive::saved_block_transactions::NULLIFIERS_KEY_U8;
use crate::drive::Drive;
use crate::drive::RootTree;
use crate::error::proof::ProofError;
use crate::error::Error;
use crate::verify::RootHash;

/// The subtree key for nullifiers storage as u8
const NULLIFIERS_KEY_U8: u8 = b'n';
use grovedb::{Element, GroveDb, PathQuery, Query, SizedQuery};
use platform_version::version::PlatformVersion;

Expand Down
Loading