]> Untitled Git - bitcoindevkit.org/commitdiff
added restore and send
authorBitcoinZavior <BitcoinZavior@gmail.com>
Tue, 30 Aug 2022 21:15:44 +0000 (17:15 -0400)
committerBitcoinZavior <BitcoinZavior@gmail.com>
Tue, 30 Aug 2022 21:15:44 +0000 (17:15 -0400)
docs/tutorials/exploring_bdk_rn.md

index 583f20fdc9366b489c4c77a9f584f239534ba936..282b1f9c4bc9c509fe0d44eaa43e5bc4641acdf1 100644 (file)
@@ -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}
         />
-        <Text selectable>{transaction}</Text>
       </Fragment>
     </View>
 ```
@@ -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: