rvv041 #82

Merged
reneve merged 0 commits from refs/pull/82/head into milestone2 2024-06-07 20:03:06 +00:00
reneve commented 2024-05-13 00:52:03 +00:00 (Migrated from git.vergara.tech)

Address book table added to DB.hs
getAdrBook function to retrieve a list of addresses created.

Address book table added to DB.hs getAdrBook function to retrieve a list of addresses created.
pitmutt (Migrated from git.vergara.tech) approved these changes 2024-06-03 14:15:03 +00:00
pitmutt (Migrated from git.vergara.tech) reviewed 2024-06-03 14:28:06 +00:00
@ -52,4 +10,1 @@
- Address Book functionality. Allows users to store frequently used zcash addresses and
generate transactions using them.
### Changed
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 14:51:14 +00:00

These changes should be added as a new version [0.5.3.0-beta]

These changes should be added as a new version `[0.5.3.0-beta]`
@ -3,6 +3,7 @@
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE ScopedTypeVariables #-}
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 14:30:17 +00:00

This option is not required.

This option is not required.
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 14:31:55 +00:00

The name of the field should be _abDescrip so the there are no conflict with the lens.

The name of the field should be `_abDescrip` so the there are no conflict with the lens.
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 19:11:35 +00:00

@reneve It's better to use more specific name fields to avoid conflicts.

@reneve It's better to use more specific name fields to avoid conflicts.
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 14:32:43 +00:00

The name of the field should be _abAddress so no conflicts with existing fields are found.

The name of the field should be `_abAddress` so no conflicts with existing fields are found.
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 14:42:58 +00:00

The field should be named _abAddresses

The field should be named `_abAddresses`
@ -203,9 +197,8 @@ data State = State
, _txForm :: !(Form SendInput () Name)
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 14:46:40 +00:00

What is this field for?

What is this field for?
@ -203,9 +197,8 @@ data State = State
, _txForm :: !(Form SendInput () Name)
, _abAddresses :: !(L.List Name (Entity AddressBook))
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 14:46:50 +00:00

What is this field for?

What is this field for?
@ -1382,3 +1322,4 @@
then zcashWalletLastSync $ entityVal $ head walList
else 0
abookList <- getAdrBook pool $ zgb_net chainInfo
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 14:37:58 +00:00

The ABList needs to be removed from the focus ring, it is not visible on the main screen.

The `ABList` needs to be removed from the focus ring, it is not visible on the main screen.
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 14:30:44 +00:00

This option is not required

This option is not required
pitmutt (Migrated from git.vergara.tech) commented 2024-06-03 14:28:06 +00:00

If this function is intended to provide only one record, it should return a IO (Maybe (Entity AddressBook))

If this function is intended to provide only one record, it should return a `IO (Maybe (Entity AddressBook))`
pitmutt (Migrated from git.vergara.tech) reviewed 2024-06-04 12:18:38 +00:00
pitmutt (Migrated from git.vergara.tech) reviewed 2024-06-04 12:21:53 +00:00
pitmutt (Migrated from git.vergara.tech) left a comment

Please review the comments on the copy address message.

Please review the comments on the copy address message.
pitmutt (Migrated from git.vergara.tech) commented 2024-06-04 12:21:53 +00:00

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.

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.
Sign in to join this conversation.
No description provided.