Skip to content

Commit

Permalink
chore: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lgalabru authored and obycode committed Feb 10, 2022
1 parent f1e8b47 commit 9cf9a40
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/frontend/cli.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use std::collections::{HashMap, BTreeSet};
use std::collections::{BTreeSet, HashMap};
use std::fs::{self, File};
use std::io::{prelude::*, BufReader, Read};
use std::path::PathBuf;
Expand Down Expand Up @@ -340,11 +340,14 @@ pub fn main() {
let mut session = repl::Session::new(settings);

let mut resolved = BTreeSet::new();
let res = session.resolve_link(&repl::settings::InitialLink {
contract_id: fork_contract.contract_id.clone(),
stacks_node_addr: None,
cache: None,
}, &mut resolved);
let res = session.resolve_link(
&repl::settings::InitialLink {
contract_id: fork_contract.contract_id.clone(),
stacks_node_addr: None,
cache: None,
},
&mut resolved,
);
let contracts = res.unwrap();
let mut changes = vec![];
for (contract_id, code, deps) in contracts.into_iter() {
Expand Down

0 comments on commit 9cf9a40

Please sign in to comment.