From 52cb28c586fe438c55c4676f4ae97b3cbd1fafc1 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Tue, 21 Jan 2014 16:49:09 -0300 Subject: [PATCH] feeds->fees --- app/models/Transaction.js | 2 +- public/views/transaction.html | 2 +- public/views/transaction/tx.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/models/Transaction.js b/app/models/Transaction.js index 7b2c4f9..12b4698 100644 --- a/app/models/Transaction.js +++ b/app/models/Transaction.js @@ -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; diff --git a/public/views/transaction.html b/public/views/transaction.html index 3970353..2a688e1 100644 --- a/public/views/transaction.html +++ b/public/views/transaction.html @@ -43,7 +43,7 @@ Fees - {{tx.feeds}} BTC + {{tx.fees}} BTC diff --git a/public/views/transaction/tx.html b/public/views/transaction/tx.html index cdd90d8..fd505df 100644 --- a/public/views/transaction/tx.html +++ b/public/views/transaction/tx.html @@ -92,7 +92,7 @@ - Feeds: {{tx.feeds}} + Fees: {{tx.fees}}