Skip to content
Merged
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
8 changes: 7 additions & 1 deletion dash-spv/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,20 @@ pub use wallet::{
};

// Re-export commonly used dashcore types
pub use dashcore::{Address, BlockHash, Network, OutPoint, ScriptBuf};
pub use dashcore::{Address, BlockHash, Network, OutPoint, QuorumHash, ScriptBuf};

// Re-export hash trait
pub use dashcore::hashes::Hash;

// Re-export MasternodeListEngine and related types
pub use dashcore::sml::masternode_list_engine::{
MasternodeListEngine, MasternodeListEngineBTreeMapBlockContainer,
MasternodeListEngineBlockContainer,
};

// Re-export LLMQ types
pub use dashcore::sml::llmq_type::LLMQType;

/// Current version of the dash-spv library.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");

Expand Down
Loading