1
0
mirror of https://github.com/twisterarmy/twister-core.git synced 2025-02-02 18:04:23 +00:00

5 lines
219 B
Python
Raw Normal View History

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