Skip to content

Commit

Permalink
Fixing warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jaegerfe committed Jun 18, 2024
1 parent 7c4346d commit e31ed73
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/pages/Block.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,18 @@ export default defineComponent({
const transaction = transactionReceipt.trx.transaction as Transaction;
void Promise.all(transaction.actions.map(async (act) => {
const data = await deserializeActionData(act);
console.log('meu teste nojento', data);
return {
...act,
trx_id: transactionReceipt.trx.id,
name: act.name.toString(),
account: act.account.toString(),
trx_id: transactionReceipt.trx.id.toString(),
data: data,
act: {
name: act.name,
name: act.name.toString(),
data: data,
account: act.account,
account: act.account.toString(),
},
'@timestamp': block.value.timestamp,
'@timestamp': block.value.timestamp.toString(),
} as unknown as Action;
})).then((acts) => {
actions.value = actions.value.concat(acts);
Expand Down

0 comments on commit e31ed73

Please sign in to comment.