From a07984f4b075d881c9451137c5e8c34c6b3cc3bf Mon Sep 17 00:00:00 2001 From: beer-1 Date: Mon, 7 Oct 2024 13:17:04 +0900 Subject: [PATCH] change default csr to zero --- x/move/types/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/move/types/params.go b/x/move/types/params.go index ac6c7c5f..92148113 100644 --- a/x/move/types/params.go +++ b/x/move/types/params.go @@ -20,7 +20,7 @@ const ( var ( DefaultBaseMinGasPrice = math.LegacyNewDecWithPrec(15, 2) // 0.15 - DefaultContractSharedRevenueRatio = math.LegacyNewDecWithPrec(50, 2) // 0.5 + DefaultContractSharedRevenueRatio = math.LegacyZeroDec() ) const (