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) }