demand_share_accounting_ext/
lib.rs1#![cfg_attr(feature = "no_std", no_std)]
2
3#[macro_use]
4extern crate alloc;
5
6mod activate_ext;
7mod r#const;
8mod data_types;
9mod error_message;
10mod get_shares;
11mod get_window;
12mod new_block_found;
13mod new_txs;
14pub mod parser;
15mod share_ok;
16mod verify_fees;
17
18pub use crate::r#const::*;
19pub use activate_ext::{Activate, ActivateSuccess};
20pub use data_types::{Hash256, PHash, Share, Slice};
21pub use error_message::ErrorMessage;
22pub use get_shares::{GetShares, GetSharesSuccess};
23pub use get_window::{GetWindow, GetWindowBusy, GetWindowSuccess};
24pub use new_block_found::NewBlockFound;
25pub use new_txs::NewTxs;
26pub use share_ok::ShareOk;
27pub use verify_fees::{
28 GetTransationsInJob, GetTransationsInJobSuccess, IdentifyTransations,
29 IdentifyTransationsSuccess, ProvideMissinTransactions, ProvideMissinTransactionsSuccess,
30};