aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/assets
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-10 19:06:16 +0800
committerobscuren <geffobscura@gmail.com>2015-03-10 19:06:16 +0800
commit56524d13b5113751539fe0a86a0a88fc4c45d2af (patch)
treeb7eeca15e85a44be617df410a6153e6b286d4ee5 /cmd/mist/assets
parentb87442a9f72f9f8dad9ea1442fc69529b2aaa631 (diff)
downloadgo-tangerine-56524d13b5113751539fe0a86a0a88fc4c45d2af.tar.gz
go-tangerine-56524d13b5113751539fe0a86a0a88fc4c45d2af.tar.zst
go-tangerine-56524d13b5113751539fe0a86a0a88fc4c45d2af.zip
removed debugger
Diffstat (limited to 'cmd/mist/assets')
-rw-r--r--cmd/mist/assets/qml/main.qml25
-rw-r--r--cmd/mist/assets/qml/views/chain.qml17
2 files changed, 0 insertions, 42 deletions
diff --git a/cmd/mist/assets/qml/main.qml b/cmd/mist/assets/qml/main.qml
index 6824d2ba9..e06ddbd71 100644
--- a/cmd/mist/assets/qml/main.qml
+++ b/cmd/mist/assets/qml/main.qml
@@ -195,13 +195,6 @@ ApplicationWindow {
Menu {
title: "Developer"
MenuItem {
- iconSource: "../icecream.png"
- text: "Debugger"
- shortcut: "Ctrl+d"
- onTriggered: eth.startDebugger()
- }
-
- MenuItem {
text: "Import Tx"
onTriggered: {
txImportDialog.visible = true
@@ -756,24 +749,6 @@ ApplicationWindow {
}
}
- Rectangle {
- height: 55
- color: "transparent"
- visible: true
- Text {
- text: "DEBUG"
- font.family: sourceSansPro.name
- font.weight: Font.DemiBold
- anchors {
- left: parent.left
- top: parent.verticalCenter
- leftMargin: 16
- }
- color: "#AAA0A0"
- }
- }
-
-
ColumnLayout {
id: menuLegacy
visible: true
diff --git a/cmd/mist/assets/qml/views/chain.qml b/cmd/mist/assets/qml/views/chain.qml
index 4d1bc0e03..9892beddf 100644
--- a/cmd/mist/assets/qml/views/chain.qml
+++ b/cmd/mist/assets/qml/views/chain.qml
@@ -178,7 +178,6 @@ Rectangle {
}
function showContractData(tx) {
- txDetailsDebugButton.tx = tx
if(tx.createsContract) {
contractData.text = tx.data
contractLabel.text = "<h4> Transaction created contract " + tx.address + "</h4>"
@@ -202,22 +201,6 @@ Rectangle {
id: contractLabel
anchors.leftMargin: 10
}
- Button {
- property var tx
- id: txDetailsDebugButton
- anchors.right: parent.right
- anchors.rightMargin: 10
- anchors.top: parent.top
- anchors.topMargin: 10
- text: "Debug contract"
- onClicked: {
- if(tx && tx.createsContract){
- eth.startDbWithCode(tx.rawData)
- }else {
- eth.startDbWithContractAndData(tx.address, tx.rawData)
- }
- }
- }
TextArea {
id: contractData
text: "Contract"