fix(abigen): rm wrong brackets (#1914)

This commit is contained in:
Matthias Seitz 2022-11-30 22:14:40 +01:00 committed by GitHub
parent 82f19e0789
commit 17addcfd91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -574,7 +574,7 @@ impl MultiBindingsInner {
let cargo_toml = std::env::current_dir()?.join("Cargo.toml"); let cargo_toml = std::env::current_dir()?.join("Cargo.toml");
let default_dep = || { let default_dep = || {
"ethers = {{ git = \"https://github.com/gakonst/ethers-rs\", default-features = false, features = [\"abigen\"] }}".to_string() "ethers = { git = \"https://github.com/gakonst/ethers-rs\", default-features = false, features = [\"abigen\"] }".to_string()
}; };
if !cargo_toml.exists() { if !cargo_toml.exists() {