Merge pull request #198 from Gitju/patch-2

Litecoin: String update s/Bitcoin/Litecoin/
This commit is contained in:
Adrian Gallagher 2015-06-11 14:42:40 +10:00
commit f607d55aff

View File

@ -37,7 +37,7 @@ elif cmd == "encryptwallet":
elif cmd == "getaccount":
try:
addr = raw_input("Enter a Bitcoin address: ")
addr = raw_input("Enter a Litecoin address: ")
print access.getaccount(addr)
except:
print "\n---An error occurred---\n"
@ -139,7 +139,7 @@ elif cmd == "getreceivedbyaccount":
elif cmd == "getreceivedbyaddress":
try:
addr = raw_input("Enter a Bitcoin address (optional): ")
addr = raw_input("Enter a Litecoin address (optional): ")
mc = raw_input("Minimum confirmations (optional): ")
try:
print access.getreceivedbyaddress(addr, mc)