Skip to content

Commit

Permalink
fix: delete useless console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelVallenet committed Oct 16, 2024
1 parent 2ec5b9e commit c3516ce
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/utils/gno.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export const adenaDoContract = async (
gasWanted: opts?.gasWanted === undefined ? 10000000 : opts.gasWanted,
memo: opts?.memo,
};
console.log(JSON.stringify(req));
const res = await adena.DoContract(req);
if (res.status === "failure") {
throw new Error(res.message);
Expand Down

0 comments on commit c3516ce

Please sign in to comment.