Skip to content

Commit

Permalink
Run fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 27, 2022
1 parent 376eda8 commit 9ce6994
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/contract/assignments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1287,7 +1287,8 @@ mod test {
.map(|(txid, amount)| {
(
SealEndpoint::ConcealedUtxo(
Revealed::from(OutPoint::new(*txid, rng.gen_range(0..=10))).commit_conceal(),
Revealed::from(OutPoint::new(*txid, rng.gen_range(0..=10)))
.commit_conceal(),
),
amount.clone(),
)
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ extern crate strict_encoding;
#[cfg(feature = "serde")]
#[macro_use]
extern crate serde_with;
pub extern crate secp256k1zkp;
#[cfg(feature = "serde")]
extern crate serde_crate as serde;
pub extern crate secp256k1zkp;

pub mod contract;
pub mod schema;
Expand Down

0 comments on commit 9ce6994

Please sign in to comment.