networks: name e variable in loop

This commit is contained in:
Daniel Cousens 2015-03-16 11:03:19 +11:00
parent 1079bf95c1
commit fc8dd65c0e

View file

@ -128,8 +128,8 @@ function estimateFee (tx, network) {
var fee = baseFee * Math.ceil(byteSize / 1000)
if (network.dustSoftThreshold === undefined) return fee
tx.outs.forEach(function (e) {
if (e.value < network.dustSoftThreshold) {
tx.outs.forEach(function (output) {
if (output.value < network.dustSoftThreshold) {
fee += baseFee
}
})