File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Current Master
4
4
5
+ ## 2.11.1 2016-09-12
6
+
7
+ - Fix bug that prevented caches from being cleared in Opera.
8
+
5
9
## 2.11.0 2016-09-12
6
10
7
11
- Fix bug where pending transactions from Test net (or other networks) show up In Main net.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " MetaMask" ,
3
3
"short_name" : " Metamask" ,
4
- "version" : " 2.11.0 " ,
4
+ "version" : " 2.11.1 " ,
5
5
"manifest_version" : 2 ,
6
6
"author" : " https://metamask.io" ,
7
7
"description" : " Ethereum Browser Extension" ,
Original file line number Diff line number Diff line change @@ -505,7 +505,7 @@ IdentityStore.prototype.purgeCache = function () {
505
505
this . _currentState . identities = { }
506
506
let accounts
507
507
try {
508
- Object . keys ( this . _ethStore . _currentState . accounts )
508
+ accounts = Object . keys ( this . _ethStore . _currentState . accounts )
509
509
} catch ( e ) {
510
510
accounts = [ ]
511
511
}
You can’t perform that action at this time.
0 commit comments