Fix ETH internal transfers checksum

This commit is contained in:
Willian Mitsuda 2021-07-03 17:20:28 -03:00
parent a852418cb6
commit 8f28408e7e
1 changed files with 2 additions and 2 deletions

View File

@ -217,8 +217,8 @@ const Transaction: React.FC = () => {
const _transfers: Transfer[] = [];
for (const t of r) {
_transfers.push({
from: t.from,
to: t.to,
from: ethers.utils.getAddress(t.from),
to: ethers.utils.getAddress(t.to),
value: t.value,
});
}