File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
src/Blockcore.Explorer/ClientApp/src/app/explorer/address Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,14 @@ <h3><i class="fas fa-wallet"></i> Address</h3>
7272 < span class ="number "> {{balance.totalSent | amount}}</ span >
7373 < span class ="number "> #{{balance.totalSentCount | number}}</ span >
7474 </ div >
75- < div *ngIf ="balance.unconfirmed > 0 ">
76- < span > Unconfirmed Balance</ span >
77- < span class ="number "> {{balance.unconfirmed | amount}}</ span >
75+ < div *ngIf ="balance.pendingReceived > 0 ">
76+ < span > Pending Received</ span >
77+ < span class ="number "> {{balance.pendingReceived | amount}}</ span >
78+ < span > </ span >
79+ </ div >
80+ < div *ngIf ="balance.pendingSent > 0 ">
81+ < span > Pending Sent</ span >
82+ < span class ="number "> {{balance.pendingSent | amount}}</ span >
7883 < span > </ span >
7984 </ div >
8085 </ div >
You can’t perform that action at this time.
0 commit comments