Browse Source

improve fee computation for P2PKH wallets

activeAddress
Ivan Socolsky 9 years ago
parent
commit
8865d42ec3
  1. 8
      lib/model/txproposal.js

8
lib/model/txproposal.js

@ -228,7 +228,13 @@ TxProposal.prototype.getRawTx = function() {
};
TxProposal.prototype.getEstimatedSizeForSingleInput = function() {
return this.requiredSignatures * 72 + this.walletN * 36 + 44;
switch (this.addressType) {
case Constants.SCRIPT_TYPES.P2PKH:
return 147;
default:
case Constants.SCRIPT_TYPES.P2SH:
return this.requiredSignatures * 72 + this.walletN * 36 + 44;
}
};
TxProposal.prototype.getEstimatedSize = function() {

Loading…
Cancel
Save