From adc0d74cb2a85aa8beaca9f747c4884af0265e9f Mon Sep 17 00:00:00 2001 From: cjepson Date: Fri, 15 Apr 2016 10:54:52 -0400 Subject: [PATCH] Change default relay fees --- wallet/createtx.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/wallet/createtx.go b/wallet/createtx.go index a66011519..c54e0f37f 100644 --- a/wallet/createtx.go +++ b/wallet/createtx.go @@ -116,20 +116,20 @@ func FeeForSize(incr dcrutil.Amount, sz int) dcrutil.Amount { return feeForSize(incr, sz) } -// FeeIncrementMainnet is the default minimum transation fee (0.05 coin, +// FeeIncrementMainnet is the default minimum transation fees per KB (0.01 coin, // measured in atoms) added to transactions requiring a fee for MainNet. -const FeeIncrementMainnet = 5e6 +const FeeIncrementMainnet = 1e6 -// FeeIncrementTestnet is the default minimum transation fee (0.00001 coin, -// measured in atoms) added to transactions requiring a fee for TestNet. +// FeeIncrementTestnet is the default minimum transation fees per KB (0.00001 +// coin, measured in atoms) added to transactions requiring a fee for TestNet. const FeeIncrementTestnet = 1e3 -// TicketFeeIncrement is the default minimum stake transation fee (0.05 coin, -// measured in atoms). -const TicketFeeIncrement = 5e6 +// TicketFeeIncrement is the default minimum stake transation fees per KB (0.01 +// coin, measured in atoms). +const TicketFeeIncrement = 1e6 // EstMaxTicketFeeAmount is the estimated max ticket fee to be used for size -// calculation for eligible utxos for ticket purchasing +// calculation for eligible utxos for ticket purchasing. const EstMaxTicketFeeAmount = 0.1 * 1e8 // --------------------------------------------------------------------------------