From 705cdda4143aa02dc630245be94d1797a3d95e24 Mon Sep 17 00:00:00 2001 From: constwz <122766871+constwz@users.noreply.github.com> Date: Wed, 12 Jun 2024 12:07:09 +0800 Subject: [PATCH] fix: GVGStakingStorageSize (#1422) --- base/gfspvgmgr/virtual_group_manager.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/gfspvgmgr/virtual_group_manager.go b/base/gfspvgmgr/virtual_group_manager.go index 065eae328..8537035c5 100644 --- a/base/gfspvgmgr/virtual_group_manager.go +++ b/base/gfspvgmgr/virtual_group_manager.go @@ -32,8 +32,8 @@ const ( VirtualGroupManagerSpace = "VirtualGroupManager" RefreshMetaInterval = 5 * time.Second MaxStorageUsageRatio = 0.95 - DefaultInitialGVGStakingStorageSize = uint64(2) * 1024 * 1024 * 1024 * 1024 // 2TB per GVG, chain side DefaultMaxStoreSizePerFamily is 64 TB - additionalGVGStakingStorageSize = uint64(1) * 1024 * 1024 * 1024 * 1024 // 1TB + DefaultInitialGVGStakingStorageSize = uint64(1) * 1024 * 1024 * 1024 * 256 // 256GB per GVG, chain side DefaultMaxStoreSizePerFamily is 64 TB + additionalGVGStakingStorageSize = uint64(1) * 1024 * 1024 * 1024 * 512 // 0.5TB defaultSPCheckTimeout = 1 * time.Minute defaultSPHealthCheckerInterval = 10 * time.Second