Skip to content

Commit

Permalink
Merge pull request #14 from Jon-Becker/fix/version
Browse files Browse the repository at this point in the history
fix: increment version
  • Loading branch information
Jon-Becker committed Sep 29, 2022
2 parents e5238d1 + 2b779d2 commit 80b04a2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heimdall-common"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heimdall-config"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion heimdall/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"]
license = "MIT"
name = "heimdall"
readme = "README.md"
version = "0.1.4"
version = "0.1.5"

[dependencies]
backtrace = "0.3"
Expand Down
4 changes: 4 additions & 0 deletions heimdall/src/decompile/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,8 @@ pub fn build_output(
)
);

logger.info(&format!("wrote decompiled ABI to '{}' .", abi_output_path).to_string());

// write the decompiled source to file
let mut decompiled_output: Vec<String> = Vec::new();

Expand Down Expand Up @@ -399,4 +401,6 @@ pub fn build_output(
// &decompiled_output_path,
// decompiled_output
// );
//
// logger.info(&format!("wrote decompiled solidity to '{}' .", decompiled_output_path).to_string());
}

0 comments on commit 80b04a2

Please sign in to comment.