Browse Source

Print privacy warning when showing timelocked addr

master
chris-belcher 5 years ago
parent
commit
bbd3d1b011
No known key found for this signature in database
GPG Key ID: EF734EA677F31129
  1. 4
      jmclient/jmclient/wallet_utils.py

4
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 " jmprint("Coins sent to this address will be not be spendable until "
+ lock_datetime.strftime("%B %Y") + ". Full date: " + lock_datetime.strftime("%B %Y") + ". Full date: "
+ str(lock_datetime)) + 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) addr = wallet.get_address_from_path(path)
return addr return addr

Loading…
Cancel
Save