[FIX] added getbalancewithunconfirmed to wallet template

This commit is contained in:
iAmShorty 2014-03-25 09:35:18 +01:00
parent b6aa1cbc66
commit d454570852

View File

@ -21,7 +21,11 @@
{if $NEWMINT >= 0}
<tr>
<td>Liquid Assets</td>
{if $GLOBAL.config.getbalancewithunconfirmed}
<td>{($BALANCE - $LOCKED - $UNCONFIRMED + $NEWMINT|default:"0")|number_format:"8"}</td>
{else}
<td>{($BALANCE - $LOCKED + $NEWMINT|default:"0")|number_format:"8"}</td>
{/if}
</tr>
<tr>
<td>PoS New Mint</td>
@ -30,7 +34,11 @@
{else}
<tr>
<td>Liquid Assets</td>
{if $GLOBAL.config.getbalancewithunconfirmed}
<td>{($BALANCE - $LOCKED - $UNCONFIRMED)|number_format:"8"}</td>
{else}
<td>{($BALANCE - $LOCKED)|number_format:"8"}</td>
{/if}
</tr>
{/if}
</table>