1
0
Fork 0
forked from External/ergo

better UX for cancelling channel transfers

This commit is contained in:
Shivaram Lingamneni 2019-12-25 15:56:57 -05:00
parent f05c6ae6e0
commit 8c1db7a2f5
2 changed files with 14 additions and 10 deletions

View file

@ -780,6 +780,7 @@ func (am *AccountManager) LoadAccount(accountName string) (result ClientAccount,
}
result, err = am.deserializeRawAccount(raw)
result.NameCasefolded = casefoldedAccount
return
}
@ -1366,8 +1367,8 @@ type AccountSettings struct {
// ClientAccount represents a user account.
type ClientAccount struct {
// Name of the account.
Name string
// RegisteredAt represents the time that the account was registered.
Name string
NameCasefolded string
RegisteredAt time.Time
Credentials AccountCredentials
Verified bool