chore: rm selector from Transaction

This commit is contained in:
royvardhan
2025-02-24 22:20:51 +05:30
parent 892726e07b
commit 0e049b7c44
2 changed files with 0 additions and 2 deletions

View File

@@ -118,7 +118,6 @@ impl TychoEncoder for EVMTychoEncoder {
value, value,
data: contract_interaction, data: contract_interaction,
to: target_address, to: target_address,
selector: None,
}); });
} }
Ok(transactions) Ok(transactions)

View File

@@ -96,7 +96,6 @@ pub struct Transaction {
pub to: Bytes, pub to: Bytes,
pub value: BigUint, pub value: BigUint,
pub data: Vec<u8>, pub data: Vec<u8>,
pub selector: Option<String>,
} }
/// Represents necessary attributes for encoding an order. /// Represents necessary attributes for encoding an order.