From ef3f8f37dbb251f21cdb1c191a364bd9ea52ce05 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Fri, 29 Jan 2016 12:45:05 -0800 Subject: [PATCH] no priority on inspection. --- lib/bcoin/tx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bcoin/tx.js b/lib/bcoin/tx.js index 29598c30..43d23275 100644 --- a/lib/bcoin/tx.js +++ b/lib/bcoin/tx.js @@ -1451,7 +1451,7 @@ TX.prototype.inspect = function inspect() { copy.fee = utils.btc(this.getFee()); copy.height = this.getHeight(); copy.confirmations = this.getConfirmations(); - copy.priority = this.getPriority().toString(10); + // copy.priority = this.getPriority().toString(10); copy.date = new Date((copy.ts || 0) * 1000).toISOString(); if (copy.hardFee) copy.hardFee = utils.btc(copy.hardFee);