rvv041 #82
No reviewers
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Vergara_Tech/zenith#82
Loading…
Reference in a new issue
No description provided.
Delete branch "refs/pull/82/head"
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?
Address book table added to DB.hs
getAdrBook function to retrieve a list of addresses created.
@ -52,4 +10,1 @@
- Address Book functionality. Allows users to store frequently used zcash addresses and
generate transactions using them.
### Changed
These changes should be added as a new version
[0.5.3.0-beta]
@ -3,6 +3,7 @@
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
This option is not required.
The name of the field should be
_abDescrip
so the there are no conflict with the lens.@reneve It's better to use more specific name fields to avoid conflicts.
The name of the field should be
_abAddress
so no conflicts with existing fields are found.The field should be named
_abAddresses
@ -203,9 +197,8 @@ data State = State
, _txForm :: !(Form SendInput () Name)
What is this field for?
@ -203,9 +197,8 @@ data State = State
, _txForm :: !(Form SendInput () Name)
, _abAddresses :: !(L.List Name (Entity AddressBook))
What is this field for?
@ -1382,3 +1322,4 @@
then zcashWalletLastSync $ entityVal $ head walList
else 0
abookList <- getAdrBook pool $ zgb_net chainInfo
The
ABList
needs to be removed from the focus ring, it is not visible on the main screen.This option is not required
If this function is intended to provide only one record, it should return a
IO (Maybe (Entity AddressBook))
Please review the comments on the copy address message.
It is not necessary to show the address, it is too long for the message window. We should only use the name in the message.