-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Conversation
@luclu, thanks for your PR! By analyzing the history of the files in this pull request, we identified @hiddentao, @frozeman and @ChihChengLiang to be potential reviewers. |
require('../openExternal.js'); | ||
require('./include/getFavicon.js'); | ||
require('./include/getMetaTags.js'); | ||
require('./include/openExternal.js'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is rather weird, not sure how this (https://github.com/ethereum/mist/commits/develop/modules/preloader/browser.js) happened. Very important to fix this ASAP!
require('../openExternal.js'); | ||
require('./include/getFavicon.js'); | ||
require('./include/getMetaTags.js'); | ||
require('./include/openExternal.js'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It only happened on these two files as I compared all manually.
|
||
const SocketBase = require('./base'), | ||
Socket = SocketBase.Socket, | ||
STATE = SocketBase.STATE; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can these unused variables safely be removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets keep it for now, could be used from some other file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I readded it for now.
|
||
const _ = global._; | ||
const dechunker = require('../ipc/dechunker.js'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this import of the dechunker needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
http should not use that, is it used anywhere?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's nowhere to be found within the interface dir
const net = require('net'); | ||
|
||
const _ = global._; | ||
const dechunker = require('../ipc/dechunker.js'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
...same for this one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes can be removed from all BUT /modules/sockets/web3Base.js
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
This thread has been automatically locked because it has not had recent activity. Please open a new issue for related bugs and link to relevant comments in this thread. |
No description provided.