mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-09-27 20:08:34 +00:00
self-review iteration 2
This commit is contained in:
@@ -3737,6 +3737,9 @@ class WalletError_hiddenProfile(TypedDict):
|
||||
class WalletError_accountBound(TypedDict):
|
||||
type: Literal["accountBound"]
|
||||
|
||||
class WalletError_accountNotHeld(TypedDict):
|
||||
type: Literal["accountNotHeld"]
|
||||
|
||||
class WalletError_counterUnknown(TypedDict):
|
||||
type: Literal["counterUnknown"]
|
||||
|
||||
@@ -3753,12 +3756,13 @@ WalletError = (
|
||||
| WalletError_badMnemonic
|
||||
| WalletError_hiddenProfile
|
||||
| WalletError_accountBound
|
||||
| WalletError_accountNotHeld
|
||||
| WalletError_counterUnknown
|
||||
| WalletError_indexTooLarge
|
||||
| WalletError_derivation
|
||||
)
|
||||
|
||||
WalletError_Tag = Literal["noMaster", "masterExists", "badMnemonic", "hiddenProfile", "accountBound", "counterUnknown", "indexTooLarge", "derivation"]
|
||||
WalletError_Tag = Literal["noMaster", "masterExists", "badMnemonic", "hiddenProfile", "accountBound", "accountNotHeld", "counterUnknown", "indexTooLarge", "derivation"]
|
||||
|
||||
class XFTPErrorType_BLOCK(TypedDict):
|
||||
type: Literal["BLOCK"]
|
||||
|
||||
Reference in New Issue
Block a user