Skip to content

Commit 02b112e

Browse files
authored
Merge pull request #1869 from Hyunhum/tiny-secp256k1-interface
Redefine tiny-secp256k1-interface
2 parents 69b0f7c + ac3f01b commit 02b112e

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/types.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ export declare function isTaptree(scriptTree: any): scriptTree is Taptree;
3030
export interface TinySecp256k1Interface {
3131
isXOnlyPoint(p: Uint8Array): boolean;
3232
xOnlyPointAddTweak(p: Uint8Array, tweak: Uint8Array): XOnlyPointAddTweakResult | null;
33-
privateAdd(d: Uint8Array, tweak: Uint8Array): Uint8Array | null;
34-
privateNegate(d: Uint8Array): Uint8Array;
3533
}
3634
export declare const Buffer256bit: any;
3735
export declare const Hash160bit: any;

ts_src/types.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,6 @@ export interface TinySecp256k1Interface {
105105
p: Uint8Array,
106106
tweak: Uint8Array,
107107
): XOnlyPointAddTweakResult | null;
108-
privateAdd(d: Uint8Array, tweak: Uint8Array): Uint8Array | null;
109-
privateNegate(d: Uint8Array): Uint8Array;
110108
}
111109

112110
export const Buffer256bit = typeforce.BufferN(32);

0 commit comments

Comments
 (0)