Fix ETH internal transfers checksum
This commit is contained in:
parent
a852418cb6
commit
8f28408e7e
|
@ -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,
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue