forked from ethereum-optimism/op-geth
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix receipt decoding for calls to eth_getLogs (#242)
* Fix receipt decoding for calls to eth_getLogs We added a special receipt type for celo dynamic fee transactions that stores the base fee in the fee currency in the receipt, this makes it possible to calculate the gasPrice without needing state access, but we missed the flow for eth_getLogs because they use a different type to decode the receipts to avoid makeing the bloom filter. So this adds support for decoding our added receipts in that flow.
- Loading branch information
Showing
2 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters