qml: fix show mempool depth when unconfirmed
This commit is contained in:
@@ -143,12 +143,12 @@ Pane {
|
|||||||
Label {
|
Label {
|
||||||
text: qsTr('Mempool depth')
|
text: qsTr('Mempool depth')
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
visible: !txdetails.isMined && txdetails.canBroadcast
|
visible: !txdetails.isMined && !txdetails.canBroadcast
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
text: txdetails.mempoolDepth
|
text: txdetails.mempoolDepth
|
||||||
visible: !txdetails.isMined && txdetails.canBroadcast
|
visible: !txdetails.isMined && !txdetails.canBroadcast
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
|
|||||||
Reference in New Issue
Block a user