Skip to content

Commit ef5b716

Browse files
committed
chore: remove console.log
1 parent 890cc09 commit ef5b716

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/utils/gno.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ export const extractGnoNumber = (str: string) => {
120120
return parseFloat(str.slice("(".length).split(" ")[0]);
121121
};
122122
export const extractGnoAddress = (str: string) => {
123-
console.log("extracting address", str);
124123
const jsonStr = str.slice("(".length, -" std.Address)".length);
125124
if (!jsonStr) {
126125
return "";
@@ -130,7 +129,6 @@ export const extractGnoAddress = (str: string) => {
130129
return JSON.parse(jsonStr) as string;
131130
};
132131
export const extractGnoString = (str: string) => {
133-
console.log("extracting string from", str);
134132
const jsonStr = str.slice("(".length, -" string)".length);
135133
if (!jsonStr) {
136134
return "";

0 commit comments

Comments
 (0)