mirror of
https://github.com/AskDavis/Casinotest.git
synced 2025-12-31 20:55:58 -08:00
6 lines
221 B
Python
6 lines
221 B
Python
from jsonrpc import ServiceProxy
|
|
access = ServiceProxy("http://127.0.0.1:47970")
|
|
pwd = raw_input("Enter old wallet passphrase: ")
|
|
pwd2 = raw_input("Enter new wallet passphrase: ")
|
|
access.walletpassphrasechange(pwd, pwd2)
|