commit
e5d4327f94
@ -322,7 +322,7 @@ TransactionSchema.statics.queryInfo = function(txid, cb) {
|
||||
|
||||
if ( !tx.isCoinBase() ) {
|
||||
info.valueIn = valueIn / util.COIN;
|
||||
info.feeds = (valueIn - valueOut) / util.COIN;
|
||||
info.fees = (valueIn - valueOut) / util.COIN;
|
||||
}
|
||||
else {
|
||||
var reward = BitcoreBlock.getBlockValue(info.height) / util.COIN;
|
||||
|
||||
@ -43,7 +43,7 @@
|
||||
</tr>
|
||||
<tr>
|
||||
<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>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@ -92,7 +92,7 @@
|
||||
</button>
|
||||
<button type="button" class="btn btn-primary">{{tx.valueOut}} BTC</button>
|
||||
</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>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user