From c4d4c236d5114765b5c59fcdeab255c666ede070 Mon Sep 17 00:00:00 2001 From: Juliya Smith Date: Tue, 17 Dec 2024 22:20:37 -0600 Subject: [PATCH] fix: mycry --- src/ape_ethereum/ecosystem.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ape_ethereum/ecosystem.py b/src/ape_ethereum/ecosystem.py index 0322be4686..ac29bfaf4c 100644 --- a/src/ape_ethereum/ecosystem.py +++ b/src/ape_ethereum/ecosystem.py @@ -588,6 +588,7 @@ def decode_receipt(self, data: dict) -> "ReceiptAPI": "transaction": self.create_transaction(**data), } + receipt_cls: type[Receipt] if data.get("type") == 3: receipt_cls = SharedBlobReceipt blob_gas_price = data.get("blob_gas_price")