fix: string index conversion:wq
This commit is contained in:
parent
741f0e937f
commit
e48b79f6d5
@ -6,7 +6,7 @@ import { contractsToInstances } from './contractsToInstances';
|
|||||||
export function handleWithdrawal(event: Withdrawal): void {
|
export function handleWithdrawal(event: Withdrawal): void {
|
||||||
let entity = new WithdrawalEntity(event.transaction.hash.toHex() + '-' + event.logIndex.toString());
|
let entity = new WithdrawalEntity(event.transaction.hash.toHex() + '-' + event.logIndex.toString());
|
||||||
|
|
||||||
let result = contractsToInstances.get(event.address.toHexString().toLowerCase()).split('-');
|
let result = contractsToInstances.get(`${event.address.toHexString()}`.toLowerCase()).split('-');
|
||||||
|
|
||||||
entity.amount = result[1];
|
entity.amount = result[1];
|
||||||
entity.currency = result[0];
|
entity.currency = result[0];
|
||||||
@ -25,7 +25,7 @@ export function handleWithdrawal(event: Withdrawal): void {
|
|||||||
export function handleDeposit(event: Deposit): void {
|
export function handleDeposit(event: Deposit): void {
|
||||||
let entity = new DepositEntity(event.transaction.hash.toHex() + '-' + event.logIndex.toString());
|
let entity = new DepositEntity(event.transaction.hash.toHex() + '-' + event.logIndex.toString());
|
||||||
|
|
||||||
let result = contractsToInstances.get(event.address.toHexString().toLowerCase()).split('-');
|
let result = contractsToInstances.get(`${event.address.toHexString()}`.toLowerCase()).split('-');
|
||||||
|
|
||||||
entity.amount = result[1];
|
entity.amount = result[1];
|
||||||
entity.currency = result[0];
|
entity.currency = result[0];
|
||||||
|
Loading…
Reference in New Issue
Block a user