Skip to content

Commit

Permalink
fix: remove debug console log (#656)
Browse files Browse the repository at this point in the history
  • Loading branch information
robercano authored Mar 21, 2024
1 parent 9779568 commit 93d5fb5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export function decodeExecutionData(
const systemDatabase = new SystemDatabase(network)

return executionData.map(execution => {
console.log('execution', JSON.stringify(execution, null, 2))
const entry = systemDatabase.getEntryByAddress(execution.to.address)

execution.to.name = entry?.name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ function parseDataDecoded(dataDecoded: any): {
} {
const method = dataDecoded.method

console.log('dataDecoded', JSON.stringify(dataDecoded, null, 2))
const parameters: ContractParameter[] = dataDecoded.parameters.map(parameter => {
const { name, type, value } = parameter
return {
Expand Down

0 comments on commit 93d5fb5

Please sign in to comment.