Skip to content
Snippets Groups Projects
  • Holger's avatar
    e7f68832
    Preparing release 0.24.0 · e7f68832
    Holger authored
    * new beemstorage module
    * Config is handled by SqliteConfigurationStore or InRamConfigurationStore
    * Keys are handled by SqliteEncryptedKeyStore or InRamPlainKeyStore
    * Move aes to beemgraphenebase
    * Wallet.keys, Wallet.keyStorage, Wallet.token and Wallet.keyMap has been removed
    * Wallet.store has now the Key Interface that handles key management
    * Token handling has been removed from Wallet
    * Token storage has been move from wallet to SteemConnect/HiveSigner
    e7f68832
    History
    Preparing release 0.24.0
    Holger authored
    * new beemstorage module
    * Config is handled by SqliteConfigurationStore or InRamConfigurationStore
    * Keys are handled by SqliteEncryptedKeyStore or InRamPlainKeyStore
    * Move aes to beemgraphenebase
    * Wallet.keys, Wallet.keyStorage, Wallet.token and Wallet.keyMap has been removed
    * Wallet.store has now the Key Interface that handles key management
    * Token handling has been removed from Wallet
    * Token storage has been move from wallet to SteemConnect/HiveSigner
exceptions.py 433 B
# -*- coding: utf-8 -*-
# Inspired by https://raw.githubusercontent.com/xeroc/python-graphenelib/master/graphenestorage/exceptions.py
class WalletLocked(Exception):
    pass


class WrongMasterPasswordException(Exception):
    """ The password provided could not properly unlock the wallet
    """

    pass


class KeyAlreadyInStoreException(Exception):
    """ The key of a key/value pair is already in the store
    """

    pass