From 361b69b9561e11eb3cf8000a51de1985e2571785 Mon Sep 17 00:00:00 2001 From: Daniel Savu <23065004+daniel-savu@users.noreply.github.com> Date: Thu, 25 Apr 2024 16:07:48 +0100 Subject: [PATCH] fix: fmt --- ethers-contract/src/lib.rs | 4 ++-- ethers-solc/src/compile/mod.rs | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ethers-contract/src/lib.rs b/ethers-contract/src/lib.rs index 116c3940a..4a1948ef8 100644 --- a/ethers-contract/src/lib.rs +++ b/ethers-contract/src/lib.rs @@ -31,8 +31,8 @@ mod multicall; #[cfg(any(test, feature = "abigen"))] #[cfg_attr(docsrs, doc(cfg(feature = "abigen")))] pub use multicall::{ - Multicall, MulticallContract, MulticallError, MulticallVersion, MULTICALL_ADDRESS, MulticallResult, - MULTICALL_SUPPORTED_CHAIN_IDS, + Multicall, MulticallContract, MulticallError, MulticallResult, MulticallVersion, + MULTICALL_ADDRESS, MULTICALL_SUPPORTED_CHAIN_IDS, }; /// This module exposes low lever builder structures which are only consumed by the diff --git a/ethers-solc/src/compile/mod.rs b/ethers-solc/src/compile/mod.rs index fe40cfb96..1135a6417 100644 --- a/ethers-solc/src/compile/mod.rs +++ b/ethers-solc/src/compile/mod.rs @@ -129,7 +129,8 @@ impl fmt::Display for SolcVersion { /// /// By default the solc path is configured as follows, with descending priority: /// 1. `SOLC_PATH` environment variable -/// 2. [svm](https://github.com/roynalnaruto/svm-rs)'s `global_version` (set via `svm use `), stored at `/.global_version` +/// 2. [svm](https://github.com/roynalnaruto/svm-rs)'s `global_version` (set via `svm use +/// `), stored at `/.global_version` /// 3. `solc` otherwise #[derive(Debug, Clone, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)] pub struct Solc {