fixed a test

This commit is contained in:
Josh Harvey 2014-06-22 09:47:09 -04:00
parent 3befd4cd94
commit a4afd44af1

View file

@ -37,7 +37,8 @@ describe('trader/send', function () {
assert.equal(SATOSHIS, satoshis); assert.equal(SATOSHIS, satoshis);
assert.equal(transactionFee, TRANSACTION_FEE); assert.equal(transactionFee, TRANSACTION_FEE);
callback(null, TXID); callback(null, TXID);
} },
balance: function () {}
}; };
trader.sendBitcoins(FINGERPRINT, { trader.sendBitcoins(FINGERPRINT, {
@ -57,7 +58,8 @@ describe('trader/send', function () {
trader.transferExchange = { trader.transferExchange = {
sendBitcoins: function () { sendBitcoins: function () {
throw new Error('This should not have been called'); throw new Error('This should not have been called');
} },
balance: function () {}
}; };
trader.sendBitcoins(FINGERPRINT, { trader.sendBitcoins(FINGERPRINT, {