From 4794dec64ef28a300bf216b1a097e5905c92d951 Mon Sep 17 00:00:00 2001 From: trizin <25263018+trizin@users.noreply.github.com> Date: Thu, 20 Apr 2023 15:18:57 +0300 Subject: [PATCH] Add missing veDelegation.save() (#658) --- src/mappings/veDelegation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mappings/veDelegation.ts b/src/mappings/veDelegation.ts index cb1fa596..fd082e64 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() }