Add lbry.getCostEstimate() stub

This commit is contained in:
Alex Liebowitz 2016-07-30 03:45:31 -04:00
parent 8a62bbf808
commit 1fcf1b4325

View file

@ -115,6 +115,10 @@ lbry.getClaimInfo = function(name, callback) {
lbry.call('get_claim_info', { name: name }, callback);
}
lbry.getCostEstimate = function(name, callback) {
lbry.call('get_est_cost', { name: name }, callback);
}
lbry.getFileStatus = function(name, callback) {
lbry.call('get_lbry_file', { 'name': name }, callback);
}