Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
fix(contract): add setter for MultiBindings' rustfmt (#1948)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored Dec 22, 2022
1 parent 0cc6be4 commit d8d4eac
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ethers-contract/ethers-contract-abigen/src/multi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ impl std::ops::Deref for MultiAbigen {
}
}

impl std::ops::DerefMut for MultiAbigen {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.abigens
}
}

impl From<Vec<Abigen>> for MultiAbigen {
fn from(abigens: Vec<Abigen>) -> Self {
Self { abigens }
Expand Down Expand Up @@ -372,6 +378,16 @@ impl MultiBindings {
self.expansion.contracts.is_empty()
}

/// Specify whether or not to format the code using a locally installed copy
/// of `rustfmt`.
///
/// Note that in case `rustfmt` does not exist or produces an error, the
/// unformatted code will be used.
pub fn rustfmt(mut self, rustfmt: bool) -> Self {
self.rustfmt = rustfmt;
self
}

fn into_inner(self, single_file: bool) -> MultiBindingsInner {
self.expansion.into_bindings(single_file, self.rustfmt)
}
Expand Down

0 comments on commit d8d4eac

Please sign in to comment.