Skip to content

Commit

Permalink
transaction.TxnTypeArgs to csv export
Browse files Browse the repository at this point in the history
  • Loading branch information
06linux authored and wk3368 committed Apr 15, 2022
1 parent 107244c commit 8808f71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/Transactions/components/Detail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -552,9 +552,9 @@ class Index extends PureComponent<IndexProps, IndexState> {
if (functionName) {
savData.push([t('transaction.FunctionName'), functionName]);
}
// if (txn_type_args) {
// savData.push([t('transaction.TxnTypeArgs'), JSON.stringify(txn_type_args[0] || [])]);
// }
if (txn_type_args) {
savData.push([t('transaction.TxnTypeArgs'), JSON.stringify(txn_type_args[0] || [])]);
}

for (let i = 0; i < decodedArgs.length; i++) {
if (decodedArgs[i][0] === 'address') {
Expand Down

0 comments on commit 8808f71

Please sign in to comment.