From b19d411bec2860878e9ad394e487266f0edb007f Mon Sep 17 00:00:00 2001 From: dtfiedler Date: Mon, 24 Jun 2024 17:29:44 -0600 Subject: [PATCH] chore: empty epochs on init --- src/epochs.lua | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/src/epochs.lua b/src/epochs.lua index 017374ec..d2734349 100644 --- a/src/epochs.lua +++ b/src/epochs.lua @@ -5,21 +5,7 @@ local balances = require("balances") local arns = require("arns") local epochs = {} -Epochs = Epochs - or { - [0] = { - startTimestamp = 0, - endTimestamp = 0, - distributionTimestamp = 0, - startBlockHeight = 0, - observations = { - failureSummaries = {}, - reports = {}, - }, - prescribedObservers = {}, - distributions = {}, - }, - } +Epochs = Epochs or {} local epochSettings = { prescribedNameCount = 5,