Skip to content

Commit 140bab4

Browse files
committed
Fix lint
1 parent b18500a commit 140bab4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

ts_src/address.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function _toFutureSegwitAddress(output: Buffer, network: Network): string {
7878

7979
/**
8080
* Decodes a base58check encoded Bitcoin address and returns the version and hash.
81-
*
81+
*
8282
* @param address - The base58check encoded Bitcoin address to decode.
8383
* @returns An object containing the version and hash of the decoded address.
8484
* @throws {TypeError} If the address is too short or too long.

ts_src/bip66.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* Checks if the given buffer is a valid BIP66-encoded signature.
7-
*
7+
*
88
* @param buffer - The buffer to check.
99
* @returns A boolean indicating whether the buffer is a valid BIP66-encoded signature.
1010
*/

ts_src/payments/bip341.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export function tweakKey(
163163

164164
/**
165165
* Computes the TapBranch hash by concatenating two buffers and applying the 'TapBranch' tagged hash algorithm.
166-
*
166+
*
167167
* @param a - The first buffer.
168168
* @param b - The second buffer.
169169
* @returns The TapBranch hash of the concatenated buffers.
@@ -174,7 +174,7 @@ function tapBranchHash(a: Buffer, b: Buffer): Buffer {
174174

175175
/**
176176
* Serializes a script by encoding its length as a varint and concatenating it with the script.
177-
*
177+
*
178178
* @param s - The script to be serialized.
179179
* @returns The serialized script as a Buffer.
180180
*/

0 commit comments

Comments
 (0)