Debug only if a tx is set. Fixes #134

pull/149/head
obscuren 10 years ago
parent 6f08e30109
commit ce05634f38
  1. 2
      mist/assets/qml/views/chain.qml

@ -210,7 +210,7 @@ Rectangle {
anchors.topMargin: 10
text: "Debug contract"
onClicked: {
if(tx.createsContract){
if(tx && tx.createsContract){
eth.startDbWithCode(tx.rawData)
}else {
eth.startDbWithContractAndData(tx.address, tx.rawData)

Loading…
Cancel
Save