global: address -> addr rename

This commit is contained in:
nym21
2026-03-17 11:01:21 +01:00
parent 5609e6c010
commit f62943199c
141 changed files with 3788 additions and 3754 deletions

View File

@@ -26,7 +26,7 @@ impl AsyncQuery {
///
/// # Example
/// ```ignore
/// let address_stats = query.run(move |q| q.address(address)).await?;
/// let addr_stats = query.run(move |q| q.addr(addr)).await?;
/// ```
pub async fn run<F, T>(&self, f: F) -> Result<T>
where