[NOD-312] Change defaultMinRelayTxFee to 1 satoshi per byte (#390)

This commit is contained in:
Ori Newman 2019-09-01 15:21:24 +03:00 committed by Svarog
parent c60711ab15
commit 893b8a88c8

View File

@ -50,7 +50,7 @@ const (
defaultBlockMaxMass = 10000000 defaultBlockMaxMass = 10000000
blockMaxMassMin = 1000 blockMaxMassMin = 1000
blockMaxMassMax = 10000000 blockMaxMassMax = 10000000
defaultMinRelayTxFee = 1000 // 1 satoshi per byte defaultMinRelayTxFee = 1e-5 // 1 satoshi per byte
defaultGenerate = false defaultGenerate = false
defaultMaxOrphanTransactions = 100 defaultMaxOrphanTransactions = 100
//DefaultMaxOrphanTxSize is the default maximum size for an orphan transaction //DefaultMaxOrphanTxSize is the default maximum size for an orphan transaction