From 100c8d33a58752154c1b19f315558eb40156d4b4 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Tue, 4 Jun 2019 18:53:50 +0700 Subject: [PATCH] Ignore tslint max line length for comment URL --- ts_src/transaction_builder.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ts_src/transaction_builder.ts b/ts_src/transaction_builder.ts index 2ab48ce..8bd9753 100644 --- a/ts_src/transaction_builder.ts +++ b/ts_src/transaction_builder.ts @@ -115,7 +115,8 @@ export class TransactionBuilder { if (!chunk) { // TODO: Check why/if this is needed. // Do we really want to return instead of when `chunk` is 0/0x00/OP_0/OP_FALSE? - // Copied from https://github.com/bitcoinjs/bip174/blob/a00379750b41be799d822d060457a6580b7e41db/src/extract_transaction.js#L42 + // tslint:disable-next-line:max-line-length + // Copied from: https://github.com/bitcoinjs/bip174/blob/a00379750b41be799d822d060457a6580b7e41db/src/extract_transaction.js#L42 return Buffer.from([]); }