Merge pull request #1078 from eordano/fix/smallFee

Add check for small fees
This commit is contained in:
Manuel Aráoz 2015-02-18 11:30:21 -03:00
commit 4c822e06c5
3 changed files with 25 additions and 12 deletions

View File

@ -119,11 +119,11 @@ Transaction.prototype.serialize = function(unsafe) {
} }
}; };
Transaction.prototype.uncheckedSerialize = function() { Transaction.prototype.uncheckedSerialize = Transaction.prototype.toString = function() {
return this.toBuffer().toString('hex'); return this.toBuffer().toString('hex');
}; };
Transaction.prototype.checkedSerialize = Transaction.prototype.toString = function() { Transaction.prototype.checkedSerialize = function() {
var feeError = this._validateFees(); var feeError = this._validateFees();
var missingChange = this._missingChange(); var missingChange = this._missingChange();
if (feeError && missingChange) { if (feeError && missingChange) {
@ -144,6 +144,9 @@ Transaction.prototype._validateFees = function() {
if (this._getUnspentValue() > Transaction.FEE_SECURITY_MARGIN * this._estimateFee()) { if (this._getUnspentValue() > Transaction.FEE_SECURITY_MARGIN * this._estimateFee()) {
return 'Fee is more than ' + Transaction.FEE_SECURITY_MARGIN + ' times the suggested amount'; return 'Fee is more than ' + Transaction.FEE_SECURITY_MARGIN + ' times the suggested amount';
} }
if (this._getUnspentValue() < this._estimateFee() / Transaction.FEE_SECURITY_MARGIN) {
return 'Fee is less than ' + Transaction.FEE_SECURITY_MARGIN + ' times the suggested amount';
}
}; };
Transaction.prototype._missingChange = function() { Transaction.prototype._missingChange = function() {

View File

@ -28,7 +28,7 @@ describe('sighash', function() {
var tx = new Transaction(txbuf); var tx = new Transaction(txbuf);
//make sure transacion to/from buffer is isomorphic //make sure transacion to/from buffer is isomorphic
tx.serialize().should.equal(txbuf.toString('hex')); tx.uncheckedSerialize().should.equal(txbuf.toString('hex'));
//sighash ought to be correct //sighash ought to be correct
sighash.sighash(tx, nhashtype, nin, subscript).toString('hex').should.equal(sighashbuf.toString('hex')); sighash.sighash(tx, nhashtype, nin, subscript).toString('hex').should.equal(sighashbuf.toString('hex'));

View File

@ -20,7 +20,7 @@ describe('Transaction', function() {
it('should serialize and deserialize correctly a given transaction', function() { it('should serialize and deserialize correctly a given transaction', function() {
var transaction = new Transaction(tx_1_hex); var transaction = new Transaction(tx_1_hex);
transaction.serialize().should.equal(tx_1_hex); transaction.uncheckedSerialize().should.equal(tx_1_hex);
}); });
it('fails if an invalid parameter is passed to constructor', function() { it('fails if an invalid parameter is passed to constructor', function() {
@ -59,13 +59,13 @@ describe('Transaction', function() {
}); });
it('serialize to Object roundtrip', function() { it('serialize to Object roundtrip', function() {
new Transaction(testTransaction.toObject()).serialize().should.equal(testTransaction.serialize()); new Transaction(testTransaction.toObject()).uncheckedSerialize().should.equal(testTransaction.serialize());
}); });
it('constructor returns a shallow copy of another transaction', function() { it('constructor returns a shallow copy of another transaction', function() {
var transaction = new Transaction(tx_1_hex); var transaction = new Transaction(tx_1_hex);
var copy = new Transaction(transaction); var copy = new Transaction(transaction);
copy.serialize().should.equal(transaction.serialize()); copy.uncheckedSerialize().should.equal(transaction.uncheckedSerialize());
}); });
it('should display correctly in console', function() { it('should display correctly in console', function() {
@ -80,12 +80,12 @@ describe('Transaction', function() {
it('serializes an empty transaction', function() { it('serializes an empty transaction', function() {
var transaction = new Transaction(); var transaction = new Transaction();
transaction.serialize().should.equal(tx_empty_hex); transaction.uncheckedSerialize().should.equal(tx_empty_hex);
}); });
it('serializes and deserializes correctly', function() { it('serializes and deserializes correctly', function() {
var transaction = new Transaction(tx_1_hex); var transaction = new Transaction(tx_1_hex);
transaction.serialize().should.equal(tx_1_hex); transaction.uncheckedSerialize().should.equal(tx_1_hex);
}); });
describe('transaction creation test vector', function() { describe('transaction creation test vector', function() {
@ -238,7 +238,17 @@ describe('Transaction', function() {
transaction.outputs.length.should.equal(2); transaction.outputs.length.should.equal(2);
transaction.outputs[1].satoshis.should.equal(10000); transaction.outputs[1].satoshis.should.equal(10000);
}); });
it('coverage: on second call to sign, change is not recalculated', function() { it('if fee is too small, fail serialization', function() {
var transaction = new Transaction()
.from(simpleUtxoWith100000Satoshis)
.to(toAddress, 99999)
.change(changeAddress)
.sign(privateKey);
expect(function() {
return transaction.serialize();
}).to.throw(errors.Transaction.FeeError);
});
it('on second call to sign, change is not recalculated', function() {
var transaction = new Transaction() var transaction = new Transaction()
.from(simpleUtxoWith100000Satoshis) .from(simpleUtxoWith100000Satoshis)
.to(toAddress, 100000) .to(toAddress, 100000)
@ -329,7 +339,7 @@ describe('Transaction', function() {
describe('to and from JSON', function() { describe('to and from JSON', function() {
it('takes a string that is a valid JSON and deserializes from it', function() { it('takes a string that is a valid JSON and deserializes from it', function() {
var simple = new Transaction(); var simple = new Transaction();
expect(new Transaction(simple.toJSON()).serialize()).to.equal(simple.serialize()); expect(new Transaction(simple.toJSON()).uncheckedSerialize()).to.equal(simple.uncheckedSerialize());
var complex = new Transaction() var complex = new Transaction()
.from(simpleUtxoWith100000Satoshis) .from(simpleUtxoWith100000Satoshis)
.to(toAddress, 50000) .to(toAddress, 50000)
@ -337,14 +347,14 @@ describe('Transaction', function() {
.sign(privateKey); .sign(privateKey);
var cj = complex.toJSON(); var cj = complex.toJSON();
var ctx = new Transaction(cj); var ctx = new Transaction(cj);
expect(ctx.serialize()).to.equal(complex.serialize()); expect(ctx.uncheckedSerialize()).to.equal(complex.uncheckedSerialize());
}); });
it('serializes the `change` information', function() { it('serializes the `change` information', function() {
var transaction = new Transaction(); var transaction = new Transaction();
transaction.change(changeAddress); transaction.change(changeAddress);
expect(JSON.parse(transaction.toJSON()).changeScript).to.equal(Script.fromAddress(changeAddress).toString()); expect(JSON.parse(transaction.toJSON()).changeScript).to.equal(Script.fromAddress(changeAddress).toString());
expect(new Transaction(transaction.toJSON()).serialize()).to.equal(transaction.serialize()); expect(new Transaction(transaction.toJSON()).uncheckedSerialize()).to.equal(transaction.uncheckedSerialize());
}); });
it('serializes correctly p2sh multisig signed tx', function() { it('serializes correctly p2sh multisig signed tx', function() {
var t = new Transaction(tx2hex); var t = new Transaction(tx2hex);