Debug only if a tx is set. Fixes #134

This commit is contained in:
obscuren 2014-10-22 11:11:12 +02:00
parent 6f08e30109
commit ce05634f38
1 changed files with 1 additions and 1 deletions

View File

@ -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)