Files
triangles_v5/contrib/wallettools/walletchangepass.py
T
TrianglesCommunityProject 627c13c0fc Black Pharao Release
Version 4.2.1.0
- wallet makeover
- staking behaviour adjustments
- non mandatory update-
- no need for updating daemons (only recomended if used for staking)
2015-07-22 23:00:36 +02:00

5 lines
220 B
Python

from jsonrpc import ServiceProxy
access = ServiceProxy("http://127.0.0.1:19111")
pwd = raw_input("Enter old wallet passphrase: ")
pwd2 = raw_input("Enter new wallet passphrase: ")
access.walletpassphrasechange(pwd, pwd2)