From d8ca995ab98bca4a110a58e22f5ab5efaa12889a Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Fri, 25 Feb 2022 16:36:31 +0000 Subject: [PATCH] Update 'README.md' --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 5f503e2..4943c80 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,11 @@ consolidation=1 * For exchanges, you can limit how many withdrawals a user can do per day, such as 3, and show them how many they have left. This will help keep wallets small and fast. * To see the balances of all zaddrs use `z_getbalances` * Do not use `z_getbalance` for each zaddr in the wallet, that will be drastically slower + * HUSH has the unique feature of allowing a z2z transcation to spend from any zaddr with enough balance + * This means you do not need to hardcode a zaddr in the "from" part of a z_sendmany and/or move funds around from various zaddrs + * To use this feature, use a single lowercase "z" as the "from" in z_sendmany, such as: `z_sendmany "z" ...` + * When using this, funds will be spent from any zaddr that has enough funds + * Note that a single zaddr must have enough funds to make the transaction, funds from multiple zaddrs cannot be used. # How Shielded Addresses (zaddrs) Are Different