From a14ce53c70bb7d909120dd3f14d0d13bceb08d5e Mon Sep 17 00:00:00 2001 From: iamsofonias Date: Mon, 22 Apr 2024 13:14:15 -0400 Subject: [PATCH] Cleanup --- lib/block_view_types.go | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/lib/block_view_types.go b/lib/block_view_types.go index ac0ae53fd..ebb676dde 100644 --- a/lib/block_view_types.go +++ b/lib/block_view_types.go @@ -4460,16 +4460,6 @@ func (gp *GlobalParamsEntry) GetFeeTimeBucketMinimumFeeAndGrowthRateBasisPoints( return minimumNetworkFeeNanosPerKB, growthRateBasisPoints } -func ComputeMultiplierFromGrowthRateBasisPoints(growthRateBasisPoints *big.Float) *big.Float { - return NewFloat().Quo( - NewFloat().Add( - NewFloat().SetUint64(10000), - growthRateBasisPoints, - ), - NewFloat().SetUint64(10000), - ) -} - // This struct holds info on a readers interactions (e.g. likes) with a post. // It is added to a post entry response in the frontend server api. type PostEntryReaderState struct {