Skip to content

Commit

Permalink
fix: schnorrSign type signtuare
Browse files Browse the repository at this point in the history
  • Loading branch information
fboucquez committed Nov 15, 2024
1 parent 914f3b3 commit 1d7f0fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/keychain/api/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export interface KeychainApi {
secp256k1: {
signBuffer(params: { data: Buffer } & KeySource): Promise<Buffer>
signBuffer(params: { data: Buffer; enc: 'der' } & KeySource): Promise<Buffer>
signSchnorr(params: { data: Buffer; tweak?: Buffer } & KeySource): Promise<Buffer>
signSchnorr(params: { data: Buffer; extraEntropy?: Buffer } & KeySource): Promise<Buffer>
}
}

Expand Down

0 comments on commit 1d7f0fa

Please sign in to comment.