diff --git a/web/popminer/dispatch.go b/web/popminer/dispatch.go index c3845b6f..66b7a633 100644 --- a/web/popminer/dispatch.go +++ b/web/popminer/dispatch.go @@ -424,7 +424,7 @@ func newMiner(config js.Value) (*Miner, *automaticFeeOptions, error) { // Automatic fee options autoFeeConfig := config.Get("automaticFees") autoFees := &automaticFeeOptions{ - enabled: autoFeeConfig.Truthy(), + enabled: autoFeeConfig.IsUndefined() || autoFeeConfig.Truthy(), feeType: RecommendedFeeTypeEconomy, refreshInterval: 5 * time.Minute, }