Skip to content
This repository has been archived by the owner on Jul 15, 2022. It is now read-only.

Commit

Permalink
change the id of tokenAccounts to not contains '/'
Browse files Browse the repository at this point in the history
  • Loading branch information
gre committed Jun 4, 2019
1 parent 1b3ed33 commit 602b0f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/families/ethereum/libcore-buildTokenAccounts.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function buildERC20TokenAccount({
await coreTokenAccount.getBalance()
);
const coreOperations = await coreTokenAccount.getOperations();
const id = parentAccountId + "|" + token.id;
const id = parentAccountId + "+" + token.contractAddress;

const operations = await minimalOperationsBuilder(
(existingTokenAccount && existingTokenAccount.operations) || [],
Expand Down

0 comments on commit 602b0f2

Please sign in to comment.