Browse Source

Transaction fee calculation does not need BigInteger

hk-custom-address
Wei Lu 11 years ago
parent
commit
75218e784f
  1. 4
      src/transaction.js

4
src/transaction.js

@ -383,11 +383,9 @@ Transaction.prototype.estimateFee = function(feePerKb){
var outSize = 34
var fixedPadding = 34
var feePerKb = feePerKb || Transaction.feePerKb
var size = this.ins.length * uncompressedInSize + this.outs.length * outSize + fixedPadding
var sizeInKb = BigInteger.valueOf(Math.ceil(size / 1000))
return BigInteger.valueOf(feePerKb).multiply(sizeInKb).intValue()
return feePerKb * Math.ceil(size / 1000)
}
var TransactionIn = function (data) {

Loading…
Cancel
Save