Commit c7d666ad authored by obscuren's avatar obscuren

Length check

parent d5262a33
...@@ -248,7 +248,7 @@ Rectangle { ...@@ -248,7 +248,7 @@ Rectangle {
for(var i = 0; i < block.txs.length; i++) { for(var i = 0; i < block.txs.length; i++) {
transactionModel.insert(0, block.txs.get(i)) transactionModel.insert(0, block.txs.get(i))
} }
if(block.txs.get(0).data){ if(block.txs.length > 0 && block.txs.get(0).data){
popup.showContractData(block.txs.get(0)) popup.showContractData(block.txs.get(0))
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment