From 5b4b5359ebc7f70066b02d8c3e5111089a2129a2 Mon Sep 17 00:00:00 2001 From: Josh Harvey Date: Fri, 25 Apr 2014 00:25:01 -0400 Subject: [PATCH] poll immediately after config change --- lib/trader.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/trader.js b/lib/trader.js index 116bfb70..8e106924 100644 --- a/lib/trader.js +++ b/lib/trader.js @@ -100,6 +100,9 @@ Trader.prototype.configure = function (config) { this.transferExchange = this._findWallet(transferExchangeCode).factory(transferExchangeConfig); this.config = config; + + this.pollBalance(); + this.pollRate(); }; /**