diff options
author | obscuren <geffobscura@gmail.com> | 2015-06-20 20:37:00 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-06-20 20:37:00 +0800 |
commit | 42a14b8a09d812dbd7d1b05f145e6881376f320b (patch) | |
tree | c3e2ca55a7b67bce4558cdae3ac395568538d76a /cmd/mist/assets/qml/QmlApp.qml | |
parent | e4f9ec886b498c5744633a4db1c735eec11dc71b (diff) | |
download | go-tangerine-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar go-tangerine-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.gz go-tangerine-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.bz2 go-tangerine-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.lz go-tangerine-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.xz go-tangerine-42a14b8a09d812dbd7d1b05f145e6881376f320b.tar.zst go-tangerine-42a14b8a09d812dbd7d1b05f145e6881376f320b.zip |
mist: R.I.P.
/"""""/""""""".
/ / \ __
/ / \ ||
/____ / \ ||
| | In Loving | ||
| | Memory | ||
| | | ||
| | 2014-2015 | ||
| | * * * * | _||_
| | *\/* *\/* | | TT |
| | *_\_ / ...""""""| || |.""...."""""""".""
| | \/.."""""..."""\ || /.""".......""""...
| |...."""""""........""""""^^^^"......."""""""".."
|......"""""""""""""""........"""""...."""""..""-Jeff W.
Diffstat (limited to 'cmd/mist/assets/qml/QmlApp.qml')
-rw-r--r-- | cmd/mist/assets/qml/QmlApp.qml | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/cmd/mist/assets/qml/QmlApp.qml b/cmd/mist/assets/qml/QmlApp.qml deleted file mode 100644 index f5c503f4c..000000000 --- a/cmd/mist/assets/qml/QmlApp.qml +++ /dev/null @@ -1,22 +0,0 @@ -import QtQuick 2.0 -import QtQuick.Controls 1.0; -import QtQuick.Layouts 1.0; -import Ethereum 1.0 - -ApplicationWindow { - minimumWidth: 500 - maximumWidth: 500 - maximumHeight: 400 - minimumHeight: 400 - - function onNewBlockCb(block) { - console.log("Please overwrite onNewBlock(block):", block) - } - function onObjectChangeCb(stateObject) { - console.log("Please overwrite onObjectChangeCb(object)", stateObject) - } - function onStorageChangeCb(storageObject) { - var ev = ["storage", storageObject.stateAddress, storageObject.address].join(":"); - console.log("Please overwrite onStorageChangeCb(object)", ev) - } -} |