Add lbry.getCostEstimate() stub
This commit is contained in:
parent
8a62bbf808
commit
1fcf1b4325
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue