Exemplo n.º 1
0
def listAddresses():
    # return a list of wallet addresses
    wallets = Wallets()
    return wallets.get_addresses()
Exemplo n.º 2
0
def isMineAddress(address):
    # check if address is in our wallet
    wallets = Wallets()
    return address in wallets.get_addresses()