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 TransactionReceipt table is used just to get few extra fields. Transaction table have some values copied from TransactionReceipt. To remove extra joins Transaction and TransactionReceipt can be merged.
🤔 Rationale
Simplify queries by removing one extra join, make the code more clear.
The text was updated successfully, but these errors were encountered:
📝 Description
Currently
TransactionReceipt
table is used just to get few extra fields.Transaction
table have some values copied fromTransactionReceipt
. To remove extra joinsTransaction
andTransactionReceipt
can be merged.🤔 Rationale
Simplify queries by removing one extra join, make the code more clear.
The text was updated successfully, but these errors were encountered: