Removed stray debug logging.

This commit is contained in:
Richard Moore 2023-02-16 07:49:33 -05:00
parent 92def9c148
commit e1e0929348

View File

@ -83,7 +83,6 @@ function getBuiltinCallException(action: CallExceptionAction, tx: { to?: null |
message += `: ${ JSON.stringify(reason) }`;
} catch (error) {
console.log(error);
message += " (could not decode reason; invalid data)";
}
@ -99,7 +98,6 @@ function getBuiltinCallException(action: CallExceptionAction, tx: { to?: null |
reason = `Panic due to ${ PanicReasons.get(code) || "UNKNOWN" }(${ code })`;
message += `: ${ reason }`;
} catch (error) {
console.log(error);
message += " (could not decode panic reason)";
}
} else {