Add a missing param to an inner function in lbry.getCostInfoForName()

This commit is contained in:
Alex Liebowitz 2016-12-29 04:10:08 -05:00
parent bf388474a7
commit a03b021945

View file

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