From 0f780f51a0f6867f9508f07c237898c221cfdfd8 Mon Sep 17 00:00:00 2001 From: trizin <25263018+trizin@users.noreply.github.com> Date: Wed, 19 Apr 2023 21:21:22 +0300 Subject: [PATCH] Add missing veDelegation.save() --- src/mappings/veDelegation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mappings/veDelegation.ts b/src/mappings/veDelegation.ts index cb1fa59..fd082e6 100644 --- a/src/mappings/veDelegation.ts +++ b/src/mappings/veDelegation.ts @@ -64,4 +64,5 @@ export function handleBurnBoost(event: BurnBoost): void { // delete const veDelegation = getveDelegation(_tokenId.toHex()) veDelegation.amount = BigInt.zero() + veDelegation.save() }