commit
e5d4327f94
@ -322,7 +322,7 @@ TransactionSchema.statics.queryInfo = function(txid, cb) {
|
|||||||
|
|
||||||
if ( !tx.isCoinBase() ) {
|
if ( !tx.isCoinBase() ) {
|
||||||
info.valueIn = valueIn / util.COIN;
|
info.valueIn = valueIn / util.COIN;
|
||||||
info.feeds = (valueIn - valueOut) / util.COIN;
|
info.fees = (valueIn - valueOut) / util.COIN;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
var reward = BitcoreBlock.getBlockValue(info.height) / util.COIN;
|
var reward = BitcoreBlock.getBlockValue(info.height) / util.COIN;
|
||||||
|
|||||||
@ -43,7 +43,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><strong>Fees</strong></td>
|
<td><strong>Fees</strong></td>
|
||||||
<td class="text-muted text-right">{{tx.feeds}} BTC</td>
|
<td class="text-muted text-right">{{tx.fees}} BTC</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
@ -92,7 +92,7 @@
|
|||||||
</button>
|
</button>
|
||||||
<button type="button" class="btn btn-primary">{{tx.valueOut}} BTC</button>
|
<button type="button" class="btn btn-primary">{{tx.valueOut}} BTC</button>
|
||||||
</div>
|
</div>
|
||||||
<small data-ng-show="!tx.isCoinBase" class="text-muted">Feeds: {{tx.feeds}}</small>
|
<small data-ng-show="!tx.isCoinBase" class="text-muted">Fees: {{tx.fees}}</small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user