mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #3101 from MetaMask/eventemitterwarning
Bump up EventEmitter listener warning threshold count to 20
This commit is contained in:
commit
9623270299
@ -2,6 +2,8 @@
|
||||
|
||||
## Current Master
|
||||
|
||||
- Bump limit for EventEmitter listeners before warning.
|
||||
|
||||
## 3.13.7 2018-1-22
|
||||
|
||||
- Add ability to bypass gas estimation loading indicator.
|
||||
|
@ -43,6 +43,8 @@ module.exports = class MetamaskController extends EventEmitter {
|
||||
constructor (opts) {
|
||||
super()
|
||||
|
||||
this.defaultMaxListeners = 20
|
||||
|
||||
this.sendUpdate = debounce(this.privateSendUpdate.bind(this), 200)
|
||||
|
||||
this.opts = opts
|
||||
|
Loading…
Reference in New Issue
Block a user