Skip to content

Commit

Permalink
fix(api): inscribe (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
thedoublejay authored Jul 27, 2023
1 parent c423efc commit 424023c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sado-connect/src/hooks/useSend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ export function useSend(): [SendFunction, string | null, boolean] {
const unsignedPsbt = Psbt.fromBase64(unsignedPsbtBase64);
let signedPsbt = null;
if (wallet === Wallet.UNISAT) {
const signedUnisatPsbt = await ordit.unisat.signPsbt(unsignedPsbt),
signedPsbt = signedUnisatPsbt.rawTxHex;
const signedUnisatPsbt = await ordit.unisat.signPsbt(unsignedPsbt);
signedPsbt = signedUnisatPsbt.rawTxHex;
} else if (wallet === Wallet.XVERSE) {
const xverseSignPsbtOptions = {
psbt: unsignedPsbt,
Expand Down

0 comments on commit 424023c

Please sign in to comment.