Skip to content

Commit

Permalink
fix: add missing signing option
Browse files Browse the repository at this point in the history
  • Loading branch information
iamcrazycoder committed Aug 9, 2023
1 parent 03dced8 commit 2e7d6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/node/inscribe.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function main() {
transaction.build();

// sign transaction
const signature = wallet.signPsbt(transaction.toHex());
const signature = wallet.signPsbt(transaction.toHex(), { isRevealTx: true });

// Broadcast transaction
const tx = await wallet.relayTx(signature, "testnet");
Expand Down

0 comments on commit 2e7d6fe

Please sign in to comment.