mirror of
https://github.com/AskDavis/Casinotest.git
synced 2026-01-01 05:05:57 -08:00
Version 1.1.0.0 update
This commit is contained in:
96
contrib/wallettools/.svn/entries
Normal file
96
contrib/wallettools/.svn/entries
Normal file
@@ -0,0 +1,96 @@
|
||||
10
|
||||
|
||||
dir
|
||||
114
|
||||
svn://svn.greyhatapps.com/repos/projects/casinocoin/contrib/wallettools
|
||||
svn://svn.greyhatapps.com/repos/projects
|
||||
|
||||
|
||||
|
||||
2013-07-03T07:48:00.318239Z
|
||||
64
|
||||
nam
|
||||
|
||||
|
||||
svn:special svn:externals svn:needs-lock
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1324ab70-8081-43f4-a012-72ad25adf38d
|
||||
|
||||
walletchangepass.py
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2013-06-25T14:29:02.000000Z
|
||||
55504fcb6f0cc00002491d0f84ab69a6
|
||||
2013-07-03T07:48:00.318239Z
|
||||
64
|
||||
nam
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
219
|
||||
|
||||
walletunlock.py
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2013-06-25T14:29:02.000000Z
|
||||
fc0493c5e7b1aaf7554a8220b134f65b
|
||||
2013-07-03T07:48:00.318239Z
|
||||
64
|
||||
nam
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
157
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
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)
|
||||
@@ -0,0 +1,4 @@
|
||||
from jsonrpc import ServiceProxy
|
||||
access = ServiceProxy("http://127.0.0.1:8332")
|
||||
pwd = raw_input("Enter wallet passphrase: ")
|
||||
access.walletpassphrase(pwd, 60)
|
||||
@@ -1,5 +1,5 @@
|
||||
from jsonrpc import ServiceProxy
|
||||
access = ServiceProxy("http://127.0.0.1:8332")
|
||||
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)
|
||||
access.walletpassphrasechange(pwd, pwd2)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
from jsonrpc import ServiceProxy
|
||||
access = ServiceProxy("http://127.0.0.1:8332")
|
||||
access = ServiceProxy("http://127.0.0.1:47970")
|
||||
pwd = raw_input("Enter wallet passphrase: ")
|
||||
access.walletpassphrase(pwd, 60)
|
||||
access.walletpassphrase(pwd, 60)
|
||||
|
||||
Reference in New Issue
Block a user