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
Right now the TxReceipt, and Change type have a bunch of maybes to indicate that these transactions possibly haven't been processed yet. Sometimes you know already that they have been processed. I think we should use some kind of dependent types with a singleton argument indicating whether the request is for something known to be processed or not known.
The concrete case this is really biting us is in the event processing. When you're processing events with filters that run to Latest, then you know that if you get a TxHash from some event and look up the receipt that it will have a Just value for all the block metadata. It's annoying to deal with this.
The text was updated successfully, but these errors were encountered:
Right now the
TxReceipt
, andChange
type have a bunch of maybes to indicate that these transactions possibly haven't been processed yet. Sometimes you know already that they have been processed. I think we should use some kind of dependent types with a singleton argument indicating whether the request is for something known to be processed or not known.The concrete case this is really biting us is in the event processing. When you're processing events with filters that run to
Latest
, then you know that if you get aTxHash
from some event and look up the receipt that it will have aJust
value for all the block metadata. It's annoying to deal with this.The text was updated successfully, but these errors were encountered: