Add a missing param to an inner function in lbry.getCostInfoForName()
This commit is contained in:
parent
bf388474a7
commit
a03b021945
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue