aboutsummaryrefslogtreecommitdiffstats
path: root/mist/assets/ext/qml_messaging.js
diff options
context:
space:
mode:
Diffstat (limited to 'mist/assets/ext/qml_messaging.js')
-rw-r--r--mist/assets/ext/qml_messaging.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/mist/assets/ext/qml_messaging.js b/mist/assets/ext/qml_messaging.js
deleted file mode 100644
index 8222c848d..000000000
--- a/mist/assets/ext/qml_messaging.js
+++ /dev/null
@@ -1,13 +0,0 @@
-function HandleMessage(data) {
- var message;
- try { message = JSON.parse(data) } catch(e) {};
-
- if(message) {
- switch(message.type) {
- case "coinbase":
- return eth.coinBase();
- case "block":
- return eth.blockByNumber(0);
- }
- }
-}