Test createAddress

Benchmarks gas usage

Note the estimator needs to be updated as this is now variable-gas to the
state.
This commit is contained in:
Luke Parker
2025-01-27 05:37:56 -05:00
parent 75c6427d7c
commit a9625364df
5 changed files with 123 additions and 4 deletions

View File

@@ -45,5 +45,10 @@ fn main() {
);
// Build the test contracts
build_solidity_contracts::build(&[], "contracts/tests", &(artifacts_path + "/tests")).unwrap();
build_solidity_contracts::build(
&["../../../networks/ethereum/schnorr/contracts", "../erc20/contracts", "contracts"],
"contracts/tests",
&(artifacts_path + "/tests"),
)
.unwrap();
}