Merge pull request #2109 from mempool/nymkappa/bugfix/block-audit-code-refactor

Block audit code refactor
This commit is contained in:
wiz
2022-07-22 01:07:02 +02:00
committed by GitHub
4 changed files with 15 additions and 14 deletions

View File

@@ -143,9 +143,7 @@ export default class TxView implements TransactionStripped {
getColor(): Color {
// Block audit
if (this.status === 'found') {
// return hexToColor('1a4987');
} else if (this.status === 'missing') {
if (this.status === 'missing') {
return hexToColor('039BE5');
} else if (this.status === 'added') {
return hexToColor('D81B60');