You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we use a strings.Builder and create one big string to store our data. Let's improve this by creating a Tx struct and a []Tx slice. This will hold our full transaction info. For tview, we create a txList and display it within the main Flex.
Each loop (unless paused), we reconstruct the []Tx slice from the list of transactions in the mempool. If the user selects a transaction, we should display more information about it.
The text was updated successfully, but these errors were encountered:
Currently, we use a
strings.Builder
and create one big string to store our data. Let's improve this by creating aTx
struct and a[]Tx
slice. This will hold our full transaction info. For tview, we create a txList and display it within the main Flex.Each loop (unless paused), we reconstruct the
[]Tx
slice from the list of transactions in the mempool. If the user selects a transaction, we should display more information about it.The text was updated successfully, but these errors were encountered: