From 8c6f984b0a85e0c6519a95e38829a3b34270fbdf Mon Sep 17 00:00:00 2001 From: Luke Van Seters Date: Tue, 19 Oct 2021 18:01:31 -0400 Subject: [PATCH] transaction hash is optional --- mev_inspect/schemas/traces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mev_inspect/schemas/traces.py b/mev_inspect/schemas/traces.py index 9764785..caaa8cb 100644 --- a/mev_inspect/schemas/traces.py +++ b/mev_inspect/schemas/traces.py @@ -19,7 +19,7 @@ class Trace(CamelModel): result: Optional[dict] subtraces: int trace_address: List[int] - transaction_hash: str + transaction_hash: Optional[str] transaction_position: Optional[int] type: TraceType error: Optional[str]