fedimint_testing_core/envs.rs
1// Env variable to TODO
2pub const FM_PREPARE_DB_MIGRATION_SNAPSHOTS_ENV: &str = "FM_PREPARE_DB_MIGRATION_SNAPSHOTS";
3
4// Env variable to TODO
5pub const FM_TEST_USE_REAL_DAEMONS_ENV: &str = "FM_TEST_USE_REAL_DAEMONS";
6
7// Env variable to TODO
8pub const FM_PORT_ESPLORA_ENV: &str = "FM_PORT_ESPLORA";
9
10// Env variable to TODO
11pub const FM_TEST_DIR_ENV: &str = "FM_TEST_DIR";
12
13// Env variable to TODO
14pub const FM_TEST_BITCOIND_RPC_ENV: &str = "FM_TEST_BITCOIND_RPC";
15
16// Overrides the wallet server's Bitcoin RPC kind used in testing fixtures.
17// This is necessary instead of `FM_FORCE_BITCOIN_RPC_KIND_ENV` since that
18// overrides both the wallet client and server's Bitcoin RPC.
19pub const FM_TEST_BACKEND_BITCOIN_RPC_KIND_ENV: &str = "FM_TEST_BACKEND_BITCOIN_RPC_KIND";
20
21// Overrides the wallet server's Bitcoin RPC URL used in testing fixtures.
22// This is necessary instead of `FM_FORCE_BITCOIN_RPC_URL_ENV` since that
23// overrides both the wallet client and server's Bitcoin RPC.
24pub const FM_TEST_BACKEND_BITCOIN_RPC_URL_ENV: &str = "FM_TEST_BACKEND_BITCOIN_RPC_URL";