From 20106bd2c21aa414b38f1615d18fccf641b1afb0 Mon Sep 17 00:00:00 2001 From: Elias Tazartes Date: Wed, 18 Oct 2023 17:02:20 +0700 Subject: [PATCH] docs: add one word to make comment clearer --- crates/evm/src/balance.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/evm/src/balance.cairo b/crates/evm/src/balance.cairo index 6580c84a0..e10ea376d 100644 --- a/crates/evm/src/balance.cairo +++ b/crates/evm/src/balance.cairo @@ -4,7 +4,7 @@ use openzeppelin::token::erc20::interface::{IERC20CamelDispatcher, IERC20CamelDi use starknet::EthAddress; -/// Returns the balance in native token for a given EVM address +/// Returns the balance in native token for a given EVM account (EOA or CA) /// This is equivalent to checking the balance in native coin, i.e. ETHER of an account in Ethereum fn balance(evm_address: EthAddress) -> u256 { // Get access to Kakarot State locally