From 43f66b473139d439f9695e2d73210da072e37447 Mon Sep 17 00:00:00 2001 From: mikhailUshakoff <75278099+mikhailUshakoff@users.noreply.github.com> Date: Wed, 5 Jun 2024 14:45:54 +0200 Subject: [PATCH] Fix path to bls-utils (#202) --- contracts/evm/test/utils/BLSUtilsFFI.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/evm/test/utils/BLSUtilsFFI.sol b/contracts/evm/test/utils/BLSUtilsFFI.sol index d9715476..05ee8a9b 100644 --- a/contracts/evm/test/utils/BLSUtilsFFI.sol +++ b/contracts/evm/test/utils/BLSUtilsFFI.sol @@ -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]; }