-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathmod.rs
More file actions
68 lines (66 loc) · 2.07 KB
/
Copy pathmod.rs
File metadata and controls
68 lines (66 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
mod block;
mod masternode;
mod masternode_stats;
mod oracle_history;
mod oracle_price_active;
mod oracle_price_aggregated;
mod oracle_price_aggregated_interval;
mod oracle_price_feed;
mod oracle_token_currency;
mod pool_swap;
mod pool_swap_aggregated;
mod price_ticker;
mod raw_block;
mod script_activity;
mod script_aggregation;
mod script_unspent;
mod transaction;
mod transaction_vin;
mod transaction_vout;
mod vault_auction_history;
use ain_db::ColumnName;
pub use block::*;
pub use masternode::*;
pub use masternode_stats::*;
pub use oracle_history::*;
pub use oracle_price_active::*;
pub use oracle_price_aggregated::*;
pub use oracle_price_aggregated_interval::*;
pub use oracle_price_feed::*;
pub use oracle_token_currency::*;
pub use pool_swap::*;
pub use pool_swap_aggregated::*;
pub use price_ticker::*;
pub use raw_block::*;
pub use script_activity::*;
pub use script_aggregation::*;
pub use script_unspent::*;
pub use transaction::*;
pub use transaction_vin::*;
pub use transaction_vout::*;
pub use vault_auction_history::*;
pub const COLUMN_NAMES: [&'static str; 23] = [
block::Block::NAME,
block::BlockByHeight::NAME,
masternode_stats::MasternodeStats::NAME,
masternode::Masternode::NAME,
masternode::MasternodeByHeight::NAME,
oracle_history::OracleHistory::NAME,
oracle_price_active::OraclePriceActive::NAME,
oracle_price_aggregated::OraclePriceAggregated::NAME,
oracle_price_aggregated_interval::OraclePriceAggregatedInterval::NAME,
oracle_price_feed::OraclePriceFeed::NAME,
oracle_token_currency::OracleTokenCurrency::NAME,
pool_swap_aggregated::PoolSwapAggregated::NAME,
pool_swap::PoolSwap::NAME,
price_ticker::PriceTicker::NAME,
raw_block::RawBlock::NAME,
script_activity::ScriptActivity::NAME,
script_aggregation::ScriptAggregation::NAME,
script_unspent::ScriptUnspent::NAME,
transaction::Transaction::NAME,
transaction_vin::TransactionVin::NAME,
transaction_vout::TransactionVout::NAME,
vault_auction_history::VaultAuctionHistory::NAME,
vault_auction_history::VaultAuctionHistoryByHeight::NAME,
];