mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-03-10 17:26:15 +01:00
Merge pull request #950 from motorina0/fix_onchain_account_type
fix: type can be `None` due to migration issue
This commit is contained in:
commit
9296e295ea
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ class WalletAccount(BaseModel):
|
|||
title: str
|
||||
address_no: int
|
||||
balance: int
|
||||
type: str = ""
|
||||
type: Optional[str] = ""
|
||||
network: str = "Mainnet"
|
||||
|
||||
@classmethod
|
||||
|
|
Loading…
Add table
Reference in a new issue