Merge pull request #1079 from mempool/simon/liquid-fee-range-dropdown

Liquid support to the Graph fee filter dropdown
This commit is contained in:
wiz
2022-01-04 04:51:10 +00:00
committed by GitHub
3 changed files with 33 additions and 27 deletions

View File

@@ -200,4 +200,8 @@ export class StateService {
setBlockScrollingInProgress(value: boolean) {
this.blockScrolling$.next(value);
}
isLiquid() {
return this.network === 'liquid' || this.network === 'liquidtestnet';
}
}