remove 'on'/UI changes per feedback

This commit is contained in:
BitcoinMechanic
2024-09-22 14:46:53 -07:00
parent b90cd4c7e3
commit 4220f99477
9 changed files with 25 additions and 34 deletions

View File

@@ -220,7 +220,8 @@ export function parseDATUMTemplateCreator(coinbaseRaw: string): string[] | null
const tagStart = tagLengthByte + 1;
const tags = bytes.slice(tagStart, tagStart + tagsLength);
const tagString = String.fromCharCode(...tags);
let tagString = String.fromCharCode(...tags);
tagString = tagString.replace('\x00', '');
return tagString.split('\x0f');
}