-
Notifications
You must be signed in to change notification settings - Fork 141
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(gtk): support create Ed25519 in gtk #1489
Conversation
Why don't you get password before generating the Ed25519? |
fixed |
@Ja7ad please update the description |
@@ -21,13 +20,13 @@ func createAddress(ww *widgetWallet) { | |||
addressLabel := getEntryObj(builder, "id_entry_account_label") | |||
|
|||
addressTypeCombo := getComboBoxTextObj(builder, "id_combo_address_type") | |||
addressTypeCombo.Append(wallet.AddressTypeBLSAccount, "Account") | |||
addressTypeCombo.Append(wallet.AddressTypeEd25519Account, "ED25519 Account") |
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.
We can define String function for Address Types
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.
Address types in wallet is not enum and don't have specific type for define String method.
We can use crypto.AddressType in future.
Description
This PR support generation Ed25519 account type on GTK.
Related issue(s)