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 @@