Skip to content

Commit

Permalink
Remove unnecessary type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Pasifaee committed May 28, 2024
1 parent 1f393f8 commit 4a4a730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereum/circuits/lib/src/account.nr
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ unconstrained fn get_account_oracle<PROOF_INPUT_LEN>(

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<MAX_PREFIXED_KEY_NIBBLE_LEN, MAX_ACCOUNT_STATE_LEN, MAX_ACCOUNT_DEPTH_NO_LEAF_M, MAX_ACCOUNT_LEAF_LEN> = Serde::deserialize(proof_input);
let proof_input = Serde::deserialize(proof_input);

(account, proof_input)
}

0 comments on commit 4a4a730

Please sign in to comment.