From: CryptoManiac Date: Fri, 15 Aug 2014 22:25:09 +0000 (+0400) Subject: Set port number to 8344 X-Git-Tag: v0.4.4.6-nvc-update8~1^2~1^2~2 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=5f2e4fa4676b142f7696e07d6ba7050a6f127f23 Set port number to 8344 --- diff --git a/contrib/wallettools/walletchangepass.py b/contrib/wallettools/walletchangepass.py index 30f3f5b..0b5859f 100644 --- a/contrib/wallettools/walletchangepass.py +++ b/contrib/wallettools/walletchangepass.py @@ -1,5 +1,5 @@ from jsonrpc import ServiceProxy -access = ServiceProxy("http://127.0.0.1:8332") +access = ServiceProxy("http://127.0.0.1:8344") pwd = raw_input("Enter old wallet passphrase: ") pwd2 = raw_input("Enter new wallet passphrase: ") access.walletpassphrasechange(pwd, pwd2) \ No newline at end of file diff --git a/contrib/wallettools/walletunlock.py b/contrib/wallettools/walletunlock.py index f847c6f..17ad07a 100644 --- a/contrib/wallettools/walletunlock.py +++ b/contrib/wallettools/walletunlock.py @@ -1,4 +1,5 @@ from jsonrpc import ServiceProxy -access = ServiceProxy("http://127.0.0.1:8332") +access = ServiceProxy("http://127.0.0.1:8344") pwd = raw_input("Enter wallet passphrase: ") -access.walletpassphrase(pwd, 60) \ No newline at end of file +access.walletpassphrase(pwd, 60) +