-
Notifications
You must be signed in to change notification settings - Fork 119
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: vks birthdays #1415
base: main
Are you sure you want to change the base?
feat: vks birthdays #1415
Changes from 1 commit
9a6a45c
82922c7
8f18043
8145873
25a68aa
4cabebd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -185,12 +185,13 @@ export const toPublicAccount = (derivedAccount: DerivedAccount): Account => { | |
alias, | ||
address, | ||
type, | ||
pseudoExtendedKey, | ||
source, | ||
timestamp, | ||
}; | ||
if (isShielded) { | ||
account.viewingKey = owner; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Once thought: Move |
||
account.pseudoExtendedKey = pseudoExtendedKey; | ||
account.source = source; | ||
account.timestamp = timestamp; | ||
} else { | ||
account.publicKey = publicKey; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One last comment - if we don't need
source
on transparent, I would maybe omit it here. It gets appended below for shielded which makes sense!There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I forgot to remove the line :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done!