Skip to content

Commit

Permalink
Fix path to bls-utils (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailUshakoff authored Jun 5, 2024
1 parent de79819 commit 43f66b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/evm/test/utils/BLSUtilsFFI.sol
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ contract BLSUtilsFFI is Test {
function _ffi(string[] memory command) internal returns (bytes memory) {
string[] memory inputs = new string[](command.length + 1);

inputs[0] = "./test/ffi/bls-utils/target/debug/bls-utils";
inputs[0] = "../../target/debug/bls-utils";
for (uint256 i = 0; i < command.length; i++) {
inputs[i + 1] = command[i];
}
Expand Down

0 comments on commit 43f66b4

Please sign in to comment.