From f05243f5381d82001132f8f94efe17335b20061b Mon Sep 17 00:00:00 2001 From: Salvionied Date: Thu, 17 Oct 2024 18:06:22 +0200 Subject: [PATCH] fix tx fee --- txBuilding/Utils/Utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/txBuilding/Utils/Utils.go b/txBuilding/Utils/Utils.go index 7428ad7..612001b 100644 --- a/txBuilding/Utils/Utils.go +++ b/txBuilding/Utils/Utils.go @@ -69,7 +69,7 @@ func Fee(context Base.ChainContext, txSize int, steps int64, mem int64, refInput } mult := 1.2 baseFee := 15.0 - Range := 25600.0 + Range := 256000.0 for refInputsSize > 0 { cur := Range curFee := cur * baseFee