From bbd3d1b011a25afd171563d418ec5977465ddecc Mon Sep 17 00:00:00 2001 From: chris-belcher Date: Fri, 2 Jul 2021 20:31:18 +0100 Subject: [PATCH] Print privacy warning when showing timelocked addr --- jmclient/jmclient/wallet_utils.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jmclient/jmclient/wallet_utils.py b/jmclient/jmclient/wallet_utils.py index 58fa249..d574371 100644 --- a/jmclient/jmclient/wallet_utils.py +++ b/jmclient/jmclient/wallet_utils.py @@ -1238,6 +1238,10 @@ def wallet_gettimelockaddress(wallet, locktime_string): jmprint("Coins sent to this address will be not be spendable until " + lock_datetime.strftime("%B %Y") + ". Full date: " + str(lock_datetime)) + jmprint("WARNING: Only send coins here which are from coinjoins or otherwise" + + " not linked to your identity. Also, use a sweep transaction when funding the" + + " timelocked address, i.e. Don't create a change address. See the privacy warnings in" + + " fidelity-bonds.md") addr = wallet.get_address_from_path(path) return addr