Fix lint for templates

This commit is contained in:
junderw 2019-03-07 14:16:45 +09:00
commit 08c4d6ac7d
No known key found for this signature in database
GPG key ID: B256185D3A971908
35 changed files with 79 additions and 68 deletions
ts_src/templates

View file

@ -7,7 +7,7 @@ export function check(script: Buffer | Array<number | Buffer>): boolean {
return buffer.length > 1 && buffer[0] === OPS.OP_RETURN;
}
check.toJSON = function() {
check.toJSON = () => {
return 'null data output';
};