Afanasii Kurakin

Results 9 comments of Afanasii Kurakin

@nsisodiya @ishuah I was able to add new routes after replacing ``` js page('*', function () {}) //needed this to prevent default "404" redirects page() ``` with this ``` js...

I'm having the same issue

I'm currently using the following work-around (hooking into `threshold`): ``` js plugin('factor-bundle', { threshold: function (row, groups) { if (row.expose == 'missingModule') return true return this._defaultThreshold(row, groups) } }) ```

There are deprecated timezones with slashes, for example 'US/Central', so we can't just filter by slash. Would be great to have additional fields in the tz db, `deprecated`, `alias` flags...

The patch from @dvcrn seems to fix it: https://github.com/dvcrn/web3.js/commit/b868c5fece70fba6d34b577ef59f3fa3159390ad

@hems I'm having the same issue too (nonce problems when calling methods too frequently). It probably happens because request are being processed in the reverse order on the server, so...

what worked for me is using underscore's [throttle](http://underscorejs.org/#throttle)/[debounce](http://underscorejs.org/#debounce) funcs to wrap up the plnx calls

I'm using a queue too. Another thought was to use separate API keys for separate calls, but I haven't tried this yet.

@hems what I meant by separate API keys is that you can create several key/secret pairs on Poloniex, and each pair (probably) will have it's own nonce, so there should...