Skip to content

Commit

Permalink
pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hal3e committed May 3, 2024
1 parent ad92a73 commit 06730f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/fuels-code-gen/src/program_bindings/abigen.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ impl Abigen {
}

fn generate_all_bindings(
parsed_targets: Vec<AbigenTarget>,
targets: Vec<AbigenTarget>,
no_std: bool,
shared_types: &HashSet<FullTypeDeclaration>,
) -> Result<GeneratedCode> {
parsed_targets
targets
.into_iter()
.map(|target| Self::generate_binding(target, no_std, shared_types))
.fold_ok(GeneratedCode::default(), |acc, generated_code| {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
error: failed to read `abi` file with path $WORKSPACE/target/tests/trybuild/fuels-macros/out/debug/fuels-macros-abi.json: No such file or directory (os error 2)
error: failed to read `abi` file with path $WORKSPACE/target/tests/trybuild/fuels-macros/out/release/fuels-macros-abi.json: No such file or directory (os error 2)
--> tests/ui/setup_program_test/invalid_project_path.rs:3:68
|
3 | setup_program_test!(Abigen(Contract(name = "MyContract", project = ".")));
Expand Down

0 comments on commit 06730f7

Please sign in to comment.