Display block details and taproot signaling.

This commit is contained in:
softsimon
2021-05-01 03:55:02 +04:00
parent 0d03a9e6cc
commit d2fe000ad0
6 changed files with 96 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'decimal2hex'
})
export class Decimal2HexPipe implements PipeTransform {
transform(decimal: number): string {
return `0x` + decimal.toString(16);
}
}