From 553d75c71512873ecda83c355e0a85202d13ae90 Mon Sep 17 00:00:00 2001 From: BitcoinZavior Date: Tue, 30 Aug 2022 17:15:44 -0400 Subject: [PATCH] added restore and send --- docs/tutorials/exploring_bdk_rn.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials/exploring_bdk_rn.md b/docs/tutorials/exploring_bdk_rn.md index 583f20fdc9..282b1f9c4b 100644 --- a/docs/tutorials/exploring_bdk_rn.md +++ b/docs/tutorials/exploring_bdk_rn.md @@ -593,6 +593,7 @@ A click handler for send button, we will use the [`quickSend()`](https://github amount: amount, }); setTransaction(data); + setDisplayText(JSON.stringify(data)); }; ``` @@ -619,7 +620,6 @@ Let's add the send transaction section and ui components below `{/* input boxes style={styles.methodButton} onPress={sendTx} /> - {transaction} ``` @@ -633,7 +633,7 @@ We should now be able to send a transaction as long as there is sufficient balan ## Conclusion - +// TODO: Add conclusion #### References: -- 2.49.0