From a882888f9432b71e5246c5a1b9dbc1a43e95b63b Mon Sep 17 00:00:00 2001 From: Daniel Perez Date: Fri, 9 Aug 2024 20:31:45 +0100 Subject: [PATCH] Remove unused type --- src/interpreter/types.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/interpreter/types.rs b/src/interpreter/types.rs index 53f604e..74a4b91 100644 --- a/src/interpreter/types.rs +++ b/src/interpreter/types.rs @@ -134,7 +134,6 @@ pub enum NonParametricType { Contract, Event, Transaction, - TransactionReceipt, Function, Repl, Block, @@ -163,7 +162,6 @@ pub enum Type { Contract(ContractInfo), Event(alloy::json_abi::Event), Transaction, - TransactionReceipt, Function, Repl, Block, @@ -201,7 +199,6 @@ impl Display for Type { Type::Function => write!(f, "function"), Type::Transaction => write!(f, "Transaction"), - Type::TransactionReceipt => write!(f, "TransactionReceipt"), Type::Repl => write!(f, "repl"), Type::Block => write!(f, "block"), @@ -234,7 +231,6 @@ impl> From for NonParametricType { Type::Event(..) => NonParametricType::Event, Type::Function => NonParametricType::Function, Type::Transaction => NonParametricType::Transaction, - Type::TransactionReceipt => NonParametricType::TransactionReceipt, Type::Repl => NonParametricType::Repl, Type::Block => NonParametricType::Block, Type::Console => NonParametricType::Console,