From 988d1bf04d17c42dc6fab6897ecdb1ffcc318911 Mon Sep 17 00:00:00 2001 From: Shannon Appelcline Date: Tue, 11 Aug 2020 13:08:02 -1000 Subject: [PATCH] Update 16_2_Using_BIP39_in_Libwally.md --- 16_2_Using_BIP39_in_Libwally.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/16_2_Using_BIP39_in_Libwally.md b/16_2_Using_BIP39_in_Libwally.md index 5c628ff..73624b5 100644 --- a/16_2_Using_BIP39_in_Libwally.md +++ b/16_2_Using_BIP39_in_Libwally.md @@ -96,6 +96,8 @@ BIP39 allows you generate a set of 12-24 Mnemonic words from a seed (and the Lib > :fire: ***What is the power of BIP39?*** Bitcoin seeds and private keys are prone to all sorts of lossage. You mistype a single digit, and your money is gone forever. Mnemonic Words are a much more user-friendly way of representing the same data, but because they're words in the language of the user's choice, they're less prone to mistakes. The power of BIP39 is thus to improve the accessibility, usability, and safety of Bitcoin. +> :fire: **What is the power of BIP32 in Libwally?** Bitcoind doesn't currently support mnemonic words, so using Libwally can allow you to generate mnemonic words in conjunction with addresses held by `bitcoind`. + ## What's Next? Learn more about "Programming Bitcoin with Libwally" in [16.3: Using BIP32 in Libwally](16_3_Using_BIP39_in_Libwally.md).