From c1c3e6728f1c4adadc156928d25b3cd08c641d97 Mon Sep 17 00:00:00 2001 From: wileyj <2847772+wileyj@users.noreply.github.com> Date: Mon, 8 Jul 2024 14:09:01 -0700 Subject: [PATCH] resolving conflicts in #1617 --- sbtc/developer-guides/end-to-end-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbtc/developer-guides/end-to-end-tutorial.md b/sbtc/developer-guides/end-to-end-tutorial.md index befb3a96c8..39d011243e 100644 --- a/sbtc/developer-guides/end-to-end-tutorial.md +++ b/sbtc/developer-guides/end-to-end-tutorial.md @@ -618,7 +618,7 @@ Next it's time to actually build the transaction. To do that we need to pass i: * Our utxos that we fetched * And where to send the remaining Bitcoin change after the transaction (UTXOs can only be spent as a whole, so we need to create another transaction to send any remainder) -Then we need to covnert that transaction to a PSBT. In order to use the Leather wallet, our transaction needs to be a PSBT, which we then pass to the wallet, use the wallet to sign, and then use the `sbtc` helper to broadcast it. +Then we need to convert that transaction to a PSBT. In order to use the Leather wallet, our transaction needs to be a PSBT, which we then pass to the wallet, use the wallet to sign, and then use the `sbtc` helper to broadcast it. The next few lines are converting the transaction to the right format, calling the wallet API to sign it, and broadcasting it.