b527f5d0d6
* WIP will work on locks * added concurrent test for referral, numbers rn still add up * will change balance table to be a view instead of a table * merged in devel. will proceed with migrations for rpc_stats_v2 and referral * WIP * WIP * WIP compiling * gotta add the balance_v2 view * about to add balance view * stupid missing closing param * compiles again, now i will just have to implement the raw sql * need to paste the real query and play with it * ok now on to testing * addresses many comments in PR * app works for simple unauthorized access. will look into tests * some tests pass, referral logic tests fail * not sure why the test is failing --------- Co-authored-by: yenicelik <david.yenicelik@gmail.com>
24 lines
432 B
Rust
24 lines
432 B
Rust
#![feature(let_chains)]
|
|
#![feature(trait_alias)]
|
|
|
|
pub mod admin_queries;
|
|
pub mod app;
|
|
pub mod balance;
|
|
pub mod block_number;
|
|
pub mod caches;
|
|
pub mod compute_units;
|
|
pub mod config;
|
|
pub mod errors;
|
|
pub mod frontend;
|
|
pub mod http_params;
|
|
pub mod jsonrpc;
|
|
pub mod pagerduty;
|
|
pub mod prometheus;
|
|
pub mod referral_code;
|
|
pub mod relational_db;
|
|
pub mod response_cache;
|
|
pub mod rpcs;
|
|
pub mod stats;
|
|
pub mod sub_commands;
|
|
pub mod user_token;
|