From a03b021945a91c970ff7d5ffbe0998eeed9bcb93 Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Thu, 29 Dec 2016 04:10:08 -0500 Subject: [PATCH] Add a missing param to an inner function in lbry.getCostInfoForName() --- js/lbry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/lbry.js b/js/lbry.js index bd9fd8c03..ca9fde1e5 100644 --- a/js/lbry.js +++ b/js/lbry.js @@ -207,7 +207,7 @@ lbry.getCostInfoForName = function(name, callback) { * - includes_data: Boolean; indicates whether or not the data fee info * from Lighthouse is included. */ - function getCostWithData(size, callback) { + function getCostWithData(name, size, callback) { lbry.getTotalCost(name, size, (cost) => { callback({ cost: cost,