From 0e049b7c44c23b356cb8fe8ac71e158a1200e4ae Mon Sep 17 00:00:00 2001 From: royvardhan Date: Mon, 24 Feb 2025 22:20:51 +0530 Subject: [PATCH] chore: rm selector from Transaction --- src/encoding/evm/tycho_encoder.rs | 1 - src/encoding/models.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/encoding/evm/tycho_encoder.rs b/src/encoding/evm/tycho_encoder.rs index 0690674..48991d6 100644 --- a/src/encoding/evm/tycho_encoder.rs +++ b/src/encoding/evm/tycho_encoder.rs @@ -118,7 +118,6 @@ impl TychoEncoder for EVMTychoEncoder { value, data: contract_interaction, to: target_address, - selector: None, }); } Ok(transactions) diff --git a/src/encoding/models.rs b/src/encoding/models.rs index c97bd32..0abc963 100644 --- a/src/encoding/models.rs +++ b/src/encoding/models.rs @@ -96,7 +96,6 @@ pub struct Transaction { pub to: Bytes, pub value: BigUint, pub data: Vec, - pub selector: Option, } /// Represents necessary attributes for encoding an order.