From f669f10d9ebd443697d1f23bd6a8aaa37c63c689 Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Fri, 17 Oct 2025 15:37:57 -0300 Subject: [PATCH] remove outdated common/src/execution_input.rs file --- common/src/execution_input.rs | 11 ----------- common/src/lib.rs | 1 - 2 files changed, 12 deletions(-) delete mode 100644 common/src/execution_input.rs diff --git a/common/src/execution_input.rs b/common/src/execution_input.rs deleted file mode 100644 index 08ff598..0000000 --- a/common/src/execution_input.rs +++ /dev/null @@ -1,11 +0,0 @@ -use serde::{Deserialize, Serialize}; - -use crate::TreeHashType; - -#[derive(Debug, Clone, Serialize, Deserialize)] -pub struct PublicNativeTokenSend { - pub from: TreeHashType, - pub nonce: u64, - pub to: TreeHashType, - pub balance_to_move: u64, -} diff --git a/common/src/lib.rs b/common/src/lib.rs index cb9617d..cfed539 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -3,7 +3,6 @@ use serde::Deserialize; use sha2::{Digest, Sha256, digest::FixedOutput}; pub mod block; -pub mod execution_input; pub mod rpc_primitives; pub mod sequencer_client; pub mod transaction;