Block page audit fallback

This commit is contained in:
softsimon
2022-12-01 19:17:59 +09:00
parent 2b411aad0a
commit 75459729ad
5 changed files with 20 additions and 9 deletions

View File

@@ -39,6 +39,7 @@ export interface Env {
BISQ_WEBSITE_URL: string;
MINING_DASHBOARD: boolean;
LIGHTNING: boolean;
BLOCK_AUDIT_START_HEIGHT: number;
}
const defaultEnv: Env = {
@@ -64,6 +65,7 @@ const defaultEnv: Env = {
'BISQ_WEBSITE_URL': 'https://bisq.markets',
'MINING_DASHBOARD': true,
'LIGHTNING': false,
'BLOCK_AUDIT_START_HEIGHT': 0,
};
@Injectable({