File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Current Master
4
4
5
+ ## 4.7.1 Fri Jun 01 2018
6
+
7
+ - Fix bug where errors were not returned to Dapps.
8
+
5
9
## 4.7.0 Wed May 30 2018
6
10
7
11
- Fix Brave support
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " __MSG_appName__" ,
3
3
"short_name" : " __MSG_appName__" ,
4
- "version" : " 4.7.0 " ,
4
+ "version" : " 4.7.1 " ,
5
5
"manifest_version" : 2 ,
6
6
"author" : " https://metamask.io" ,
7
7
"description" : " __MSG_appDescription__" ,
Original file line number Diff line number Diff line change
1
+ const MessageManager = require ( './lib/message-manager' )
2
+ const PersonalMessageManager = require ( './lib/personal-message-manager' )
3
+ const TypedMessageManager = require ( './lib/typed-message-manager' )
4
+
5
+ class UserActionController {
6
+
7
+ constructor ( opts = { } ) {
8
+
9
+ this . messageManager = new MessageManager ( )
10
+ this . personalMessageManager = new PersonalMessageManager ( )
11
+ this . typedMessageManager = new TypedMessageManager ( )
12
+
13
+ }
14
+
15
+ }
16
+
17
+ module . exports = UserActionController
You can’t perform that action at this time.
0 commit comments