dogecoin/contrib/wallettools/walletchangepass.py
Jackson Palmer 68b0507f00 Initial commit
Successfully building on Ubuntu + Windows.
2014-01-19 15:41:55 +11:00

6 lines
220 B
Python

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