From 2488623435a0d148cb56c453e3f0fba694d90586 Mon Sep 17 00:00:00 2001 From: jholdstock Date: Sat, 30 May 2020 08:15:57 +0100 Subject: [PATCH] Make default config match docs. --- config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 3347665..8d21898 100644 --- a/config.go +++ b/config.go @@ -21,7 +21,7 @@ import ( var ( defaultListen = ":3000" defaultLogLevel = "debug" - defaultVSPFee = 5.0 + defaultVSPFee = 3.0 defaultNetwork = "testnet" defaultHomeDir = dcrutil.AppDataDir("vspd", false) defaultConfigFilename = "vspd.conf" @@ -258,7 +258,7 @@ func loadConfig() (*config, error) { // Ensure the fee percentage is valid per txrules. if !txrules.ValidPoolFeeRate(cfg.VSPFee) { - return nil, errors.New("invalid vspfee - should be greater than 0.01 and less than 100.0 ") + return nil, errors.New("invalid vspfee - should be greater than 0.01 and less than 100.0") } // Ensure the support email address is set.