Merge pull request #1501 from mempool/simon/opcode-coloring

Correcting op_code coloring
This commit is contained in:
softsimon 2022-04-03 15:31:11 +04:00 committed by GitHub
commit ab8d0a02c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -264,6 +264,7 @@ export class AsmStylerPipe implements PipeTransform {
case 'LESSTHAN':
case 'GREATERTHAN':
case 'LESSTHANOREQUAL':
case 'GREATERTHANOREQUAL':
case 'MIN':
case 'MAX':
case 'WITHIN':
@ -279,12 +280,12 @@ export class AsmStylerPipe implements PipeTransform {
case 'CHECKSIG':
case 'CHECKSIGVERIFY':
case 'CHECKMULTISIG':
case 'CHCEKMULTISIGVERIFY':
case 'CHECKMULTISIGVERIFY':
style = 'crypto';
break;
case 'CHECKLOCKTIMEVERIFY':
case 'CHECKSEQUENCEVERIFY':
case 'CLTV':
case 'CSV':
style = 'locktime';
break;