From 49482217944f9e5e935fda5a9d224b21d788cc92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Izabela=20O=C5=BCd=C5=BCe=C5=84ska?= Date: Wed, 29 May 2024 09:23:03 +0200 Subject: [PATCH] Remove code added accidentally --- .../circuits/get_transaction/src/main.nr | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 ethereum_history_api/circuits/get_transaction/src/main.nr diff --git a/ethereum_history_api/circuits/get_transaction/src/main.nr b/ethereum_history_api/circuits/get_transaction/src/main.nr deleted file mode 100644 index 9f04367e..00000000 --- a/ethereum_history_api/circuits/get_transaction/src/main.nr +++ /dev/null @@ -1,18 +0,0 @@ -use dep::ethereum_history_api::transaction::{ - get_transaction, TransactionWithinBlock -}; - -global MAX_DATA_LEN_M = 1000; - -fn main( - chain_id: pub Field, - block_number: pub u64, - tx_idx: pub Field -) -> pub TransactionWithinBlock { - let transaction_within_block: TransactionWithinBlock = get_transaction( - chain_id, - block_number, - tx_idx - ); - transaction_within_block -}