diff --git a/crates/provider/src/provider/trait.rs b/crates/provider/src/provider/trait.rs index 713625cc1e8..d7f641b5b46 100644 --- a/crates/provider/src/provider/trait.rs +++ b/crates/provider/src/provider/trait.rs @@ -248,7 +248,9 @@ pub trait Provider: RpcWithBlock::new(self.weak_client(), "eth_getAccount", address) } - /// Gets the balance of the account at the specified tag, which defaults to latest. + /// Gets the balance of the account. + /// + /// Defaults to the latest block. See also [`RpcWithBlock::block_id`]. fn get_balance(&self, address: Address) -> RpcWithBlock { RpcWithBlock::new(self.weak_client(), "eth_getBalance", address) }