Skip to content
This repository has been archived by the owner on Jun 14, 2018. It is now read-only.

Commit

Permalink
fix typo error in method name
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit HERVIER committed Jun 20, 2013
1 parent bcd8aff commit eef4cb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bitpurse/wallet.py
Expand Up @@ -325,7 +325,7 @@ def addTransactionHistForAddress(self, addr, transaction):
address.transactions.append(transaction)
return

def getPrivKeyFor Address(self, addr, secondPassword=None):
def getPrivKeyForAddress(self, addr, secondPassword=None):
'''Return private key for an address'''
for address in self.addresses:
if addr == address.addr:
Expand Down Expand Up @@ -458,4 +458,4 @@ def update(self, passKey):
except:
import traceback
traceback.print_exc()
raise
raise

0 comments on commit eef4cb9

Please sign in to comment.