From 4a4a7301ab93d941a877809e9664db4b52a6752c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Izabela=20O=C5=BCd=C5=BCe=C5=84ska?= Date: Tue, 28 May 2024 12:47:24 +0200 Subject: [PATCH] Remove unnecessary type annotation --- ethereum/circuits/lib/src/account.nr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethereum/circuits/lib/src/account.nr b/ethereum/circuits/lib/src/account.nr index d22af125..aa7c5583 100644 --- a/ethereum/circuits/lib/src/account.nr +++ b/ethereum/circuits/lib/src/account.nr @@ -53,7 +53,7 @@ unconstrained fn get_account_oracle( unconstrained fn get_account_unconstrained_M(chain_id: Field, block_no: u64, address: Address) -> AccountWithStateProofM { let (account, proof_input) = get_account_oracle(chain_id, block_no, address); - let proof_input: ProofInput = Serde::deserialize(proof_input); + let proof_input = Serde::deserialize(proof_input); (account, proof_input) }