Display coinbase and op return messages all the time.

This commit is contained in:
softsimon
2020-06-06 23:50:08 +07:00
parent 9263c79822
commit c28e2786b9
3 changed files with 26 additions and 2 deletions

View File

@@ -6,6 +6,12 @@ import { Pipe, PipeTransform } from '@angular/core';
export class Hex2asciiPipe implements PipeTransform {
transform(hex: string): string {
const opPush = hex.split(' ').filter((_, i, a) => i > 0 && /^OP_PUSH/.test(a[i - 1]));
if (opPush[0]) {
hex = opPush[0];
}
if (!hex) {
return '';
}