chore(clippy): fix bare urls in abigen (#2133)
This commit is contained in:
parent
6528664e8c
commit
c0fd8326f0
|
@ -62,7 +62,7 @@ where
|
|||
}
|
||||
|
||||
pub(crate) fn imports(name: &str) -> TokenStream {
|
||||
let doc_str = format!("{name} was auto-generated with ethers-rs Abigen. More information at: https://github.com/gakonst/ethers-rs");
|
||||
let doc_str = format!("{name} was auto-generated with ethers-rs Abigen. More information at: <https://github.com/gakonst/ethers-rs>");
|
||||
|
||||
let ethers_core = ethers_core_crate();
|
||||
let ethers_providers = ethers_providers_crate();
|
||||
|
|
|
@ -42,7 +42,7 @@ mod dsproxyfactory_mod {
|
|||
types::*,
|
||||
};
|
||||
use ethers_providers::Middleware;
|
||||
#[doc = "DsProxyFactory was auto-generated with ethers-rs Abigen. More information at: https://github.com/gakonst/ethers-rs"]
|
||||
#[doc = "DsProxyFactory was auto-generated with ethers-rs Abigen. More information at: <https://github.com/gakonst/ethers-rs>"]
|
||||
use std::sync::Arc;
|
||||
|
||||
pub static DSPROXYFACTORY_ABI: Lazy<Abi> = Lazy::new(|| {
|
||||
|
|
Loading…
Reference in New Issue