We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 565ffbe commit 43ca85fCopy full SHA for 43ca85f
transaction/fee_model/sats_per_kb.go
@@ -33,5 +33,5 @@ func (s *SatoshisPerKilobyte) ComputeFee(tx *transaction.Transaction) (uint64, e
33
size += len(*o.LockingScript)
34
}
35
size += 4
36
- return (uint64(math.Ceil(float64(size) / 1000))) * s.Satoshis, nil
+ return (uint64(math.Ceil(float64(size)/1000)) * s.Satoshis), nil
37
0 commit comments