mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-12-06 17:27:59 +00:00
Fix bug in trace message for updateOwnerOffersFundedAmount
This commit is contained in:
@@ -793,9 +793,9 @@ OrderBook.prototype.updateOwnerOffersFundedAmount = function(account) {
|
||||
const self = this;
|
||||
|
||||
if (this._remote.trace) {
|
||||
const ownerFunds = this.getOwnerFunds(account).to_text();
|
||||
|
||||
log.info('updating offer funds', this._key, account, ownerFunds);
|
||||
const ownerFunds = this.getOwnerFunds(account);
|
||||
log.info('updating offer funds', this._key, account,
|
||||
ownerFunds ? ownerFunds.to_text() : 'undefined');
|
||||
}
|
||||
|
||||
this.resetOwnerOfferTotal(account);
|
||||
|
||||
Reference in New Issue
Block a user