fix: doc typo regarding Multicall::call_array (#1985)

This commit is contained in:
Akram Hussein 2022-12-30 09:44:03 -03:00 committed by GitHub
parent 4274a27531
commit 69e0ff7301
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -661,7 +661,7 @@ impl<M: Middleware> Multicall<M> {
/// #
/// # let multicall = Multicall::new(client, None).await?;
/// // If the all Solidity function calls `returns (uint256)`:
/// let result: Vec<U256> = multicall.call().await?;
/// let result: Vec<U256> = multicall.call_array().await?;
/// # Ok(())
/// # }
/// ```