New config that lets frontend connect to a separate Bisq mempool backend.

This commit is contained in:
softsimon
2020-07-25 21:21:53 +07:00
parent 0ded140c72
commit 24e40b25fd
5 changed files with 10 additions and 4 deletions

View File

@@ -38,6 +38,7 @@ interface Env {
TESTNET_ENABLED: boolean;
LIQUID_ENABLED: boolean;
BISQ_ENABLED: boolean;
BISQ_SEPARATE_BACKEND: boolean;
ELCTRS_ITEMS_PER_PAGE: number;
KEEP_BLOCKS_AMOUNT: number;
}
@@ -46,6 +47,7 @@ const defaultEnv: Env = {
'TESTNET_ENABLED': false,
'LIQUID_ENABLED': false,
'BISQ_ENABLED': false,
'BISQ_SEPARATE_BACKEND': false,
'ELCTRS_ITEMS_PER_PAGE': 25,
'KEEP_BLOCKS_AMOUNT': 8
};