catch erros

This commit is contained in:
0xmuralik 2023-03-29 13:45:51 +05:30
parent 85f350dea9
commit 30861621cf

View File

@ -1,7 +1,11 @@
const { execSync } = require("child_process");
export const cliTest = (args: any) => {
return JSON.parse(execSync(`./bin/laconic cns ${args}`));
try{
return JSON.parse(execSync(`./bin/laconic cns ${args}`));
}catch(err){
return(err)
}
};
export function createBond(type: string, quantity: string):string{