infallibel wallet and account derivation

This commit is contained in:
Alain Brenzikofer
2026-09-26 12:34:06 +02:00
parent 41d06dd4ea
commit 143d073980
10 changed files with 23 additions and 46 deletions
@@ -3746,10 +3746,6 @@ class WalletError_counterUnknown(TypedDict):
class WalletError_accountsExhausted(TypedDict):
type: Literal["accountsExhausted"]
class WalletError_derivation(TypedDict):
type: Literal["derivation"]
derivationError: str
WalletError = (
WalletError_noMaster
| WalletError_masterExists
@@ -3759,10 +3755,9 @@ WalletError = (
| WalletError_accountNotHeld
| WalletError_counterUnknown
| WalletError_accountsExhausted
| WalletError_derivation
)
WalletError_Tag = Literal["noMaster", "masterExists", "badMnemonic", "hiddenProfile", "accountBound", "accountNotHeld", "counterUnknown", "accountsExhausted", "derivation"]
WalletError_Tag = Literal["noMaster", "masterExists", "badMnemonic", "hiddenProfile", "accountBound", "accountNotHeld", "counterUnknown", "accountsExhausted"]
class XFTPErrorType_BLOCK(TypedDict):
type: Literal["BLOCK"]