Changing bigInt to BigDecimal

This commit is contained in:
Jamie Hewitt 2023-03-29 09:37:32 -04:00
parent fcad0f71fb
commit 86d336ada0
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { BigInt } from '@graphprotocol/graph-ts'
import { BigDecimal, BigInt } from '@graphprotocol/graph-ts'
import {
BurnBoost,
DelegateBoost,
@ -71,6 +71,6 @@ export function handleBurnBoost(event: BurnBoost): void {
// delete
const veDelegation = getveDelegation(_tokenId.toHex())
veDelegation.amountFraction = BigInt.zero()
veDelegation.amountFraction = BigDecimal.zero()
veDelegation.amount = BigInt.zero()
}