From 9d48c1385be083068ef10039ddc1fc6409dba0d9 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Sat, 26 Aug 2017 12:37:08 -0700 Subject: [PATCH] mtx: rename subtractFee to subtractIndex. --- lib/primitives/mtx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/primitives/mtx.js b/lib/primitives/mtx.js index 718bf336..470581ee 100644 --- a/lib/primitives/mtx.js +++ b/lib/primitives/mtx.js @@ -1228,7 +1228,7 @@ MTX.prototype.selectCoins = function selectCoins(coins, options) { * @param {Amount} fee */ -MTX.prototype.subtractFee = function subtractFee(index, fee) { +MTX.prototype.subtractIndex = function subtractIndex(index, fee) { assert(typeof index === 'number'); assert(typeof fee === 'number');