cfx_rpc_cfx_types/pos/
mod.rs

1// Copyright 2019 Conflux Foundation. All rights reserved.
2// Conflux is free software and distributed under GNU General Public License.
3// See http://www.gnu.org/licenses/
4
5mod account;
6mod block;
7mod block_number;
8mod committee;
9mod decision;
10mod epoch_state;
11mod ledger_info;
12mod node_lock_status;
13mod reward;
14mod status;
15mod transaction;
16
17pub use self::{
18    account::Account,
19    block::{Block, Signature},
20    block_number::BlockNumber,
21    committee::{CommitteeState, NodeVotingPower, RpcCommittee, RpcTermData},
22    decision::Decision,
23    epoch_state::EpochState,
24    ledger_info::LedgerInfoWithSignatures,
25    node_lock_status::{NodeLockStatus, VotePowerState},
26    reward::{PoSEpochReward, Reward},
27    status::Status,
28    transaction::{
29        tx_type, RpcTransactionStatus, RpcTransactionType, Transaction,
30    },
31};