mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-11 12:22:39 -03:00
8ad100a55b
Signed-off-by: David Perry <enmaku@gmail.com>
5 lines
No EOL
219 B
Python
5 lines
No EOL
219 B
Python
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) |