We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1839d7 commit f0d43f7Copy full SHA for f0d43f7
scripts/set-callback-gas.ts
@@ -22,4 +22,7 @@ import { IexecInterfaceToken__factory } from '../typechain';
22
await iexecPoCo.setCallbackGas(requestedCallbackGas).then((tx) => tx.wait());
23
const callbackGasAfter = (await iexecPoCo.callbackgas()).toLocaleString();
24
console.log(`Changed callback-gas from ${callbackGasBefore} to ${callbackGasAfter}`);
25
-})().catch((error) => console.log(error));
+})().catch((error) => {
26
+ console.log(error);
27
+ process.exitCode = 1;
28
+});
0 commit comments