merge with develop branch

This commit is contained in:
viktor 2018-07-19 12:41:40 +03:00
commit fafd3fed0d
2 changed files with 4 additions and 11 deletions

View File

@ -47,8 +47,8 @@ function setupInjection () {
function setupStreams () {
// setup communication to page and plugin
const pageStream = new LocalMessageDuplexStream({
name: 'contentscript',
target: 'inpage',
name: 'nifty-contentscript',
target: 'nifty-inpage',
})
const pluginPort = extension.runtime.connect({ name: 'contentscript' })
const pluginStream = new PortStream(pluginPort)

View File

@ -15,8 +15,8 @@ log.setDefaultLevel(process.env.METAMASK_DEBUG ? 'debug' : 'warn')
// setup background connection
var metamaskStream = new LocalMessageDuplexStream({
name: 'inpage',
target: 'contentscript',
name: 'nifty-inpage',
target: 'nifty-contentscript',
})
// compose the inpage provider
@ -26,13 +26,6 @@ var inpageProvider = new MetamaskInpageProvider(metamaskStream)
// setup web3
//
if (typeof window.web3 !== 'undefined') {
throw new Error(`Nifty Wallet detected another web3.
Nifty Wallet will not work reliably with another web3 extension.
This usually happens if you have two MetaMasks installed,
or Nifty Wallet and another web3 extension. Please remove one
and try again.`)
}
var web3 = new Web3(inpageProvider)
web3.setProvider = function () {
log.debug('Nifty Wallet - overrode web3.setProvider')