Fix total account funds being emitted on offer_funds_changed rather than the amount set as taker_gets_funded

This commit is contained in:
wltsmrz
2014-08-19 14:28:11 -07:00
parent 40dc49bd63
commit d416f31801
2 changed files with 4 additions and 3 deletions

View File

@@ -996,7 +996,7 @@ describe('OrderBook', function() {
book.on('offer_funds_changed', function(offer, previousFunds, newFunds) {
assert.strictEqual(previousFunds, '100');
assert.strictEqual(newFunds, '10');
assert.strictEqual(newFunds, '4.9656112525');
switch (++receivedFundsChangedEvents) {
case 1:
assert(!offer.is_fully_funded);
@@ -1130,7 +1130,7 @@ describe('OrderBook', function() {
book.on('offer_funds_changed', function(offer, previousFunds, newFunds) {
assert.strictEqual(previousFunds, '100');
assert.strictEqual(newFunds, '25');
assert.strictEqual(newFunds, '10');
switch (++receivedFundsChangedEvents) {
case 1:
assert(!offer.is_fully_funded);