From f54293a9c6fe47be49a90a22837d1f86034b2e4a Mon Sep 17 00:00:00 2001 From: Till Ziegler Date: Sun, 14 Jul 2024 12:55:43 +0200 Subject: [PATCH] lint --- x/treasury/types/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/treasury/types/params.go b/x/treasury/types/params.go index b599f6b9..fb739730 100644 --- a/x/treasury/types/params.go +++ b/x/treasury/types/params.go @@ -48,7 +48,7 @@ var ( DefaultRewardWeight = sdk.NewDecWithPrec(5, 2) // 5% DefaultBurnTaxSplit = sdk.NewDecWithPrec(1, 1) // 10% goes to community pool, 90% burn DefaultMinInitialDepositRatio = sdk.ZeroDec() // 0% min initial deposit - DefaultOracleSplit = sdk.OneDec() // 100% oracle, community tax (CP) is deducted before oracle split + DefaultOracleSplit = sdk.OneDec() // 100% oracle, community tax (CP) is deducted before oracle split ) var _ paramstypes.ParamSet = &Params{}