mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 13:03:17 +01:00
6 lines
220 B
Python
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)
|