Skip to content

Commit

Permalink
fix: use build script for proxy deployments as well (#6580)
Browse files Browse the repository at this point in the history
  • Loading branch information
kayagokalp authored Sep 23, 2024
1 parent e549ca5 commit 93efc18
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 729 deletions.
7 changes: 5 additions & 2 deletions forc-plugins/forc-client/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ fn main() {
let util_tx_path = PathBuf::from("src/util/tx.rs");
update_proxy_abi_decl_with_file(&util_tx_path, &minified_json);

let util_tx_path = PathBuf::from("tests/deploy.rs");
update_proxy_abi_decl_with_file(&util_tx_path, &minified_json);
let test_path = PathBuf::from("tests/deploy.rs");
update_proxy_abi_decl_with_file(&test_path, &minified_json);

let deploy_path = PathBuf::from("src/op/deploy.rs");
update_proxy_abi_decl_with_file(&deploy_path, &minified_json);
}
Loading

0 comments on commit 93efc18

Please sign in to comment.