Skip to content

Commit

Permalink
fix(lint): add empty data for evmtx
Browse files Browse the repository at this point in the history
  • Loading branch information
lykalabrada committed Oct 3, 2023
1 parent b6d880f commit e3fd0eb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mobile-app/app/api/transaction/transfer_domain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export async function transferDomainSigner(
amount,
},
domain: srcDomain,
data: new Uint8Array([]),
},
dst: {
address: dstScript,
Expand All @@ -60,6 +61,7 @@ export async function transferDomainSigner(
amount,
},
domain: dstDomain,
data: new Uint8Array([]),
},
},
],
Expand Down

0 comments on commit e3fd0eb

Please sign in to comment.