1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

deps - bump ui and provider-engine

This commit is contained in:
kumavis 2016-03-08 13:27:38 -08:00
parent 1c8049520d
commit 099bb6e63d
2 changed files with 4 additions and 4 deletions

View File

@ -61,8 +61,8 @@ function getState(){
function onRpcRequest(remotePort, payload){ function onRpcRequest(remotePort, payload){
// console.log('MetaMaskPlugin - incoming payload:', payload) // console.log('MetaMaskPlugin - incoming payload:', payload)
zeroClient.sendAsync(payload, function onPayloadHandled(err, response){ zeroClient.sendAsync(payload, function onPayloadHandled(err, response){
if (err) throw err // provider engine errors are included in response objects
console.log('MetaMaskPlugin - RPC complete:', payload, '->', response) if (!payload.isMetamaskInternal) console.log('MetaMaskPlugin - RPC complete:', payload, '->', response)
try { try {
remotePort.postMessage(response) remotePort.postMessage(response)
} catch (_) { } catch (_) {

View File

@ -18,10 +18,10 @@
"ethereumjs-util": "^1.3.5", "ethereumjs-util": "^1.3.5",
"faux-jax": "git+https://github.com/kumavis/faux-jax.git#c3648de04804f3895c5b4972750cae5b51ddb103", "faux-jax": "git+https://github.com/kumavis/faux-jax.git#c3648de04804f3895c5b4972750cae5b51ddb103",
"inject-css": "^0.1.1", "inject-css": "^0.1.1",
"metamask-ui": "^1.3.0", "metamask-ui": "^1.4.0",
"readable-stream": "^2.0.5", "readable-stream": "^2.0.5",
"web3": "^0.15.1", "web3": "^0.15.1",
"web3-provider-engine": "^6.0.3", "web3-provider-engine": "^7.0.0",
"xtend": "^4.0.1" "xtend": "^4.0.1"
}, },
"devDependencies": { "devDependencies": {