Skip to content

Commit e1e0929

Browse files
committedFeb 16, 2023
Removed stray debug logging.
1 parent 92def9c commit e1e0929

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎src.ts/abi/abi-coder.ts

-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ function getBuiltinCallException(action: CallExceptionAction, tx: { to?: null |
8383
message += `: ${ JSON.stringify(reason) }`;
8484

8585
} catch (error) {
86-
console.log(error);
8786
message += " (could not decode reason; invalid data)";
8887
}
8988

@@ -99,7 +98,6 @@ function getBuiltinCallException(action: CallExceptionAction, tx: { to?: null |
9998
reason = `Panic due to ${ PanicReasons.get(code) || "UNKNOWN" }(${ code })`;
10099
message += `: ${ reason }`;
101100
} catch (error) {
102-
console.log(error);
103101
message += " (could not decode panic reason)";
104102
}
105103
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.