Skip to content

Commit

Permalink
chore: remove debug var
Browse files Browse the repository at this point in the history
  • Loading branch information
billyjacoby authored Oct 31, 2024
1 parent 29ddc37 commit d51f272
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/wallets/wallet-private-key/src/strategy/strategy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,7 @@ export class PrivateKeyWallet
}

try {
const bufferUTF = Buffer.from(toUtf8(data), 'utf-8')
const signature = await pk.signHashed(bufferUTF)
const signature = await pk.signHashed(Buffer.from(toUtf8(data), 'utf-8'))

return signature
} catch (e: unknown) {
Expand Down

0 comments on commit d51f272

Please sign in to comment.