mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-20 10:34:20 +01:00
* wip * wip * model * refactor wallet transactions * refactor wallet * sending with fees works and outputs fill up the wallet * wip work * ok * comments * receive with amount=0 * correctly import postmeltrequest * fix melt amount * tests working * remove mint_loaded decorator in deprecated wallet api * wallet works with units * refactor: melt_quote * fix fees * add file * fees for melt inputs * set default input fee for internal quotes to 0 * fix coinselect * coin selection working * yo * fix all tests * clean up * last commit added fees for inputs for melt transactions - this commit adds a blanace too low exception * fix fee return and melt quote max allowed amount check during creation of melt quote * clean up code * add tests for fees * add melt tests * update wallet fee information
99 lines
2.4 KiB
Python
99 lines
2.4 KiB
Python
from typing import Optional
|
|
|
|
|
|
class CashuError(Exception):
|
|
code: int
|
|
detail: str
|
|
|
|
def __init__(self, detail, code=0):
|
|
super().__init__(detail)
|
|
self.code = code
|
|
self.detail = detail
|
|
|
|
|
|
class NotAllowedError(CashuError):
|
|
detail = "not allowed"
|
|
code = 10000
|
|
|
|
def __init__(self, detail: Optional[str] = None, code: Optional[int] = None):
|
|
super().__init__(detail or self.detail, code=code or self.code)
|
|
|
|
|
|
class TransactionError(CashuError):
|
|
detail = "transaction error"
|
|
code = 11000
|
|
|
|
def __init__(self, detail: Optional[str] = None, code: Optional[int] = None):
|
|
super().__init__(detail or self.detail, code=code or self.code)
|
|
|
|
|
|
class TokenAlreadySpentError(TransactionError):
|
|
detail = "Token already spent."
|
|
code = 11001
|
|
|
|
def __init__(self):
|
|
super().__init__(self.detail, code=self.code)
|
|
|
|
|
|
class TransactionNotBalancedError(TransactionError):
|
|
code = 11002
|
|
|
|
def __init__(self, detail):
|
|
super().__init__(detail, code=self.code)
|
|
|
|
|
|
class SecretTooLongError(TransactionError):
|
|
code = 11003
|
|
|
|
def __init__(self, detail="secret too long"):
|
|
super().__init__(detail, code=self.code)
|
|
|
|
|
|
class NoSecretInProofsError(TransactionError):
|
|
detail = "no secret in proofs"
|
|
code = 11004
|
|
|
|
def __init__(self):
|
|
super().__init__(self.detail, code=self.code)
|
|
|
|
|
|
class TransactionUnitError(TransactionError):
|
|
code = 11005
|
|
|
|
def __init__(self, detail):
|
|
super().__init__(detail, code=self.code)
|
|
|
|
|
|
class KeysetError(CashuError):
|
|
detail = "keyset error"
|
|
code = 12000
|
|
|
|
def __init__(self, detail: Optional[str] = None, code: Optional[int] = None):
|
|
super().__init__(detail or self.detail, code=code or self.code)
|
|
|
|
|
|
class KeysetNotFoundError(KeysetError):
|
|
detail = "keyset not found"
|
|
code = 12001
|
|
|
|
def __init__(self, keyset_id: Optional[str] = None):
|
|
if keyset_id:
|
|
self.detail = f"{self.detail}: {keyset_id}"
|
|
super().__init__(self.detail, code=self.code)
|
|
|
|
|
|
class LightningError(CashuError):
|
|
detail = "Lightning error"
|
|
code = 20000
|
|
|
|
def __init__(self, detail: Optional[str] = None, code: Optional[int] = None):
|
|
super().__init__(detail or self.detail, code=code or self.code)
|
|
|
|
|
|
class QuoteNotPaidError(CashuError):
|
|
detail = "quote not paid"
|
|
code = 20001
|
|
|
|
def __init__(self):
|
|
super().__init__(self.detail, code=2001)
|