Liquid: Display BTC as L-BTC.

This commit is contained in:
softsimon
2020-03-25 21:55:18 +07:00
parent 6b96dce478
commit 12546e1096
7 changed files with 18 additions and 7 deletions

View File

@@ -9,6 +9,7 @@ import { AudioService } from 'src/app/services/audio.service';
import { ApiService } from 'src/app/services/api.service';
import { of, merge } from 'rxjs';
import { SeoService } from 'src/app/services/seo.service';
import { environment } from 'src/environments/environment';
@Component({
selector: 'app-address',
@@ -16,6 +17,8 @@ import { SeoService } from 'src/app/services/seo.service';
styleUrls: ['./address.component.scss']
})
export class AddressComponent implements OnInit, OnDestroy {
network = environment.network;
address: Address;
addressString: string;
isLoadingAddress = true;