ens #32
No reviewers
Labels
No Label
ussd/user-reported
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: grassrootseconomics/sarafu-vise#32
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "ens"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
PR Change
Adds a new menu option under My Account to Edit your alias based on name of your choice.
Displays your assigned alias on the Main Menu.
Request aliases based on the ENS.
@ -1107,0 +1119,4 @@
logg.ErrorCtxf(ctx, "Failed to read account alias entry with", "key", "error", storedb.DATA_ACCOUNT_ALIAS, err)
return res, err
}
res.FlagSet = append(res.FlagSet, flag_offerings_set)
is this the correct flag to set?
This line of code is actually misplaced. The right flag would have been "flag flag_alias_set" but it is not being utilized or checked in the associated
vis
file. The commitc2a0b05c84
removes this unnecessary line.@ -1458,3 +1505,3 @@
balStr := fmt.Sprintf("%.2f %s", balFloat, activeSym)
res.Content = l.Get("Balance: %s\n", balStr)
if alias != "" {
DRY?
Commit:
e97d4be296
aims to resolve this. TheCheckBalance
should possibly be refactored further maybe? Currently it not only loads the balance,but also the user alias if set.@ -2397,0 +2462,4 @@
return res, err
}
//Ensures that the call doesn't happen twice for the same alias hint
if !bytes.Equal(aliasHint, input) {
could this fail if something else writes the temp value in the meantime?
It is unlikely that this would happen because there can only be one DB write operation to the temp value at a time for that particular session id.
pending staging tests