diff options
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rw-r--r-- | app/manifest.json | 2 | ||||
-rw-r--r-- | app/scripts/lib/idStore.js | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 970ebde80..177545214 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,14 @@ # Changelog ## Current Master + +- Fix bug that would cause MetaMask to occasionally lose its StreamProvider connection and drop requests. + +## 2.13.8 2016-11-16 + - Show a warning when a transaction fails during simulation. - Fix bug where 20% of gas estimate was not being added properly. -- Render error messages in our confirmation screen more gracefully. +- Render error messages in confirmation screen more gracefully. ## 2.13.7 2016-11-8 diff --git a/app/manifest.json b/app/manifest.json index a21809ce8..99149f91e 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,7 +1,7 @@ { "name": "MetaMask", "short_name": "Metamask", - "version": "2.13.7", + "version": "2.13.8", "manifest_version": 2, "author": "https://metamask.io", "description": "Ethereum Browser Extension", diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js index d11c38be1..b73652af5 100644 --- a/app/scripts/lib/idStore.js +++ b/app/scripts/lib/idStore.js @@ -7,7 +7,7 @@ const EthQuery = require('eth-query') const KeyStore = require('eth-lightwallet').keystore const clone = require('clone') const extend = require('xtend') -const createId = require('web3-provider-engine/util/random-id') +const createId = require('./random-id') const ethBinToOps = require('eth-bin-to-ops') const autoFaucet = require('./auto-faucet') const messageManager = require('./message-manager') |