Skip to content

Commit

Permalink
Make default fee amount constant more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
jrick committed Apr 12, 2022
1 parent 185f9cd commit 736efd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wallet/txrules/rules.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func StakeSubScriptType(scriptType stdscript.ScriptType) (stdscript.ScriptType,
}

// DefaultRelayFeePerKb is the default minimum relay fee policy for a mempool.
const DefaultRelayFeePerKb dcrutil.Amount = 1e4
const DefaultRelayFeePerKb dcrutil.Amount = 0.0001 * 1e8

// IsDustAmount determines whether a transaction output value and script length would
// cause the output to be considered dust. Transactions with dust outputs are
Expand Down

0 comments on commit 736efd2

Please sign in to comment.