From 5681fc7265b760ae3a7900a74e806880532d6562 Mon Sep 17 00:00:00 2001 From: GnaD13 Date: Mon, 30 Oct 2023 14:39:36 +0700 Subject: [PATCH] reduce epoch time --- x/feeabs/types/epoch.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/feeabs/types/epoch.go b/x/feeabs/types/epoch.go index 2c99f6cf..568c15df 100644 --- a/x/feeabs/types/epoch.go +++ b/x/feeabs/types/epoch.go @@ -6,8 +6,8 @@ import ( ) const ( - DefaultSwapPeriod time.Duration = time.Minute * 180 - DefaultQueryPeriod time.Duration = time.Minute * 60 + DefaultSwapPeriod time.Duration = time.Minute * 5 + DefaultQueryPeriod time.Duration = time.Minute * 5 DefaultSwapEpochIdentifier string = "swap" DefaultQueryEpochIdentifier string = "query" )